Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDragSourceEffect.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDragSourceEffect.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDragSourceEffect.java
index f3f85a9b4e..43fff72ec2 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDragSourceEffect.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDragSourceEffect.java
@@ -78,7 +78,7 @@ public class TreeDragSourceEffect extends DragSourceEffect {
if (dragSourceImage != null) dragSourceImage.dispose();
dragSourceImage = null;
NSPoint point = new NSPoint();
- int /*long*/ ptr = OS.malloc(NSPoint.sizeof);
+ long /*int*/ ptr = OS.malloc(NSPoint.sizeof);
OS.memmove(ptr, point, NSPoint.sizeof);
NSEvent nsEvent = NSApplication.sharedApplication().currentEvent();
NSTableView widget = (NSTableView)control.view;

Back to the top