summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2009-05-21 16:46:04 +0000
committerSilenio Quarti <silenio>2009-05-21 16:46:04 +0000
commitac621d92ba45de42f9d09f7fe662976525c4ad9b (patch)
treeda9a4434fd265a276aee3033e8bc0efbdc1ce105 /bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java
parente8c492b580df6eaebfbbc10b2f10a8c0c8b6eedd (diff)
downloadeclipse.platform.swt-ac621d92ba45de42f9d09f7fe662976525c4ad9b.tar.gz
eclipse.platform.swt-ac621d92ba45de42f9d09f7fe662976525c4ad9b.tar.xz
eclipse.platform.swt-ac621d92ba45de42f9d09f7fe662976525c4ad9b.zip
fix comment
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java
index f5384b5ec7..22fda15922 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java
@@ -86,6 +86,7 @@ public class TableDragSourceEffect extends DragSourceEffect {
NSImage nsImage = widget.dragImageForRowsWithIndexes(widget.selectedRowIndexes(), widget.tableColumns(), nsEvent, ptr);
OS.memmove(point, ptr, NSPoint.sizeof);
OS.free(ptr);
+ //TODO: Image representation wrong???
Image image = Image.cocoa_new(control.getDisplay(), SWT.BITMAP, nsImage);
dragSourceImage = image;
nsImage.retain();