summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java
diff options
context:
space:
mode:
authorChristophe Cornu <ccornu>2004-03-12 00:05:26 +0000
committerChristophe Cornu <ccornu>2004-03-12 00:05:26 +0000
commitd34258fe1d04f9f444f8c314b6f7abeb6bbbf98e (patch)
treed2a3b481e83db68004f64f45863a05c3fe717a46 /bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java
parent6c06da5cc714a999068643e90b3924141a46b3bc (diff)
downloadeclipse.platform.swt-d34258fe1d04f9f444f8c314b6f7abeb6bbbf98e.tar.gz
eclipse.platform.swt-d34258fe1d04f9f444f8c314b6f7abeb6bbbf98e.tar.xz
eclipse.platform.swt-d34258fe1d04f9f444f8c314b6f7abeb6bbbf98e.zip
64 bit
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java b/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java
index c4430e9713..252cc9290e 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java
@@ -34,7 +34,7 @@ public class SWT_AWT {
static boolean loaded;
-static native final int getAWTHandle (Canvas canvas);
+static native final int /*long*/ getAWTHandle (Canvas canvas);
static synchronized void loadLibrary () {
if (loaded) return;
@@ -101,7 +101,7 @@ public static Frame new_Frame (final Composite parent) {
public static Shell new_Shell (final Display display, final Canvas parent) {
if (display == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
if (parent == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
- int handle = 0;
+ int /*long*/ handle = 0;
try {
loadLibrary ();
handle = getAWTHandle (parent);