--- old/src/solaris/classes/sun/awt/X11GraphicsDevice.java 2014-07-23 19:45:59.469498147 +0400 +++ new/src/solaris/classes/sun/awt/X11GraphicsDevice.java 2014-07-23 19:45:59.341498143 +0400 @@ -328,7 +328,7 @@ private static void enterFullScreenExclusive(Window w) { X11ComponentPeer peer = (X11ComponentPeer)w.getPeer(); if (peer != null) { - enterFullScreenExclusive(peer.getContentWindow()); + enterFullScreenExclusive(peer.getWindow()); peer.setFullScreenExclusiveModeState(true); } } @@ -337,7 +337,7 @@ X11ComponentPeer peer = (X11ComponentPeer)w.getPeer(); if (peer != null) { peer.setFullScreenExclusiveModeState(false); - exitFullScreenExclusive(peer.getContentWindow()); + exitFullScreenExclusive(peer.getWindow()); } }