Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Transfer.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Transfer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Transfer.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Transfer.java
index 39d95fc769..19381c7753 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Transfer.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Transfer.java
@@ -130,9 +130,9 @@ abstract protected Object nativeToJava(TransferData transferData);
* @return the unique identifier associated with this data type
*/
public static int registerType(String formatName){
- if (formatName == null) return OS.GDK_NONE;
+ if (formatName == null) return GDK.GDK_NONE;
byte[] buffer = Converter.wcsToMbcs(formatName, true);
- return (int)/*64*/OS.gdk_atom_intern(buffer, false);
+ return (int)/*64*/GDK.gdk_atom_intern(buffer, false);
}
/**

Back to the top