summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVeronika Irvine <veronika>2006-02-09 18:33:21 +0000
committerVeronika Irvine <veronika>2006-02-09 18:33:21 +0000
commita1a38e77f966d4086d57828d92c30ac56a644d45 (patch)
treed4c550cfaba272aa26b49ca98c2225fb369cd9d2
parent5b14baa76c6c8ba57f76e433bb065ae494549f1c (diff)
downloadeclipse.platform.swt-a1a38e77f966d4086d57828d92c30ac56a644d45.tar.gz
eclipse.platform.swt-a1a38e77f966d4086d57828d92c30ac56a644d45.tar.xz
eclipse.platform.swt-a1a38e77f966d4086d57828d92c30ac56a644d45.zip
fix for gtk 64
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DragSource.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DragSource.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DragSource.java
index b7df08f530..1d1d6ffa3c 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DragSource.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DragSource.java
@@ -290,7 +290,7 @@ void drag(Event dragEvent) {
int actions = opToOsOp(getStyle());
ImageData imageData = effect.getDragSourceImage(dragEvent.x, dragEvent.y);
- int context = OS.gtk_drag_begin(control.handle, targetList, actions, 1, 0);
+ int /*long*/ context = OS.gtk_drag_begin(control.handle, targetList, actions, 1, 0);
if (context != 0 && imageData != null) {
Image image = new Image(getDisplay(), imageData);
int /*long*/ pixbuf = createPixbuf(image);