jdk/src/solaris/classes/sun/awt/X11/XComponentPeer.java
changeset 8133 c7e4a02e928e
parent 5506 202f599c92aa
child 9035 1255eb81cc2f
--- a/jdk/src/solaris/classes/sun/awt/X11/XComponentPeer.java	Tue Jan 25 15:33:14 2011 +0300
+++ b/jdk/src/solaris/classes/sun/awt/X11/XComponentPeer.java	Tue Jan 25 19:07:27 2011 +0300
@@ -725,7 +725,21 @@
         XGlobalCursorManager.getCursorManager().updateCursorImmediately();
     }
 
-    public void pSetCursor(Cursor cursor) {
+    public final void pSetCursor(Cursor cursor) {
+        this.pSetCursor(cursor, true);
+    }
+
+    /*
+     * The method changes the cursor.
+     * @param cursor - a new cursor to change to.
+     * @param ignoreSubComponents - if {@code true} is passed then
+     *                              the new cursor will be installed on window.
+     *                              if {@code false} is passed then
+     *                              subsequent components will try to handle
+     *                              this request and install their cursor.
+     */
+    //ignoreSubComponents not used here
+    public void pSetCursor(Cursor cursor, boolean ignoreSubComponents) {
         XToolkit.awtLock();
         try {
             long xcursor = XGlobalCursorManager.getCursor(cursor);