Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Northover2003-06-02 22:04:01 +0000
committerSteve Northover2003-06-02 22:04:01 +0000
commit59447a1923b1252d62656622d6666900d696c50d (patch)
tree762b86a76b0c7b3e7d59405eb317c250bd531baa
parent3b6e79e7b2500a1efceca3bc4f172e86646ab56d (diff)
downloadeclipse.platform.swt-59447a1923b1252d62656622d6666900d696c50d.tar.gz
eclipse.platform.swt-59447a1923b1252d62656622d6666900d696c50d.tar.xz
eclipse.platform.swt-59447a1923b1252d62656622d6666900d696c50d.zip
*** empty log message ***
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Tracker.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Tracker.java b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Tracker.java
index d924e98eda..c484b9c459 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Tracker.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Tracker.java
@@ -364,8 +364,10 @@ public boolean open () {
int [] unused = new int [1], mask = new int [1];
OS.XQueryPointer (xDisplay, xWindow, unused, unused, oldX, oldY, unused, unused, mask);
- // if exactly one of UP/DOWN is specified as a style then set the cursor
- // orientation accordingly (the same is done for LEFT/RIGHT styles below)
+ /*
+ * If exactly one of UP/DOWN is specified as a style then set the cursor
+ * orientation accordingly (the same is done for LEFT/RIGHT styles below).
+ */
int vStyle = style & (SWT.UP | SWT.DOWN);
if (vStyle == SWT.UP || vStyle == SWT.DOWN) {
cursorOrientation |= vStyle;

Back to the top