diff options
author | Carolyn MacLeod <carolyn> | 2011-03-04 16:32:40 +0000 |
---|---|---|
committer | Carolyn MacLeod <carolyn> | 2011-03-04 16:32:40 +0000 |
commit | 8ce316923e6cdde0429eb514c11eea22ddf5f8be (patch) | |
tree | 894779f0a4267a611daaff85f3a3fa0e9cf0b87c /bundles | |
parent | 5c079b8e19b99f9d56f71ba7d967ba0a75b4e083 (diff) | |
download | eclipse.platform.swt-8ce316923e6cdde0429eb514c11eea22ddf5f8be.tar.gz eclipse.platform.swt-8ce316923e6cdde0429eb514c11eea22ddf5f8be.tar.xz eclipse.platform.swt-8ce316923e6cdde0429eb514c11eea22ddf5f8be.zip |
fix comment
Diffstat (limited to 'bundles')
-rwxr-xr-x | bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java index 9f28c6448e..fb4123cf2f 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java @@ -1161,7 +1161,7 @@ boolean dragDetect (int x, int y, boolean filter, boolean [] consume) { while (eventType != OS.NSLeftMouseUp) { NSEvent event = application.nextEventMatchingMask((OS.NSLeftMouseUpMask | OS.NSLeftMouseDraggedMask), timeout, OS.NSEventTrackingRunLoopMode, true); - // No event means nextEventMatchingMask timed out, so no drag. + // No event means nextEventMatchingMask timed out. if (event == null) { dragging = true; break; |