summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsEmbedString.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsEmbedString.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsEmbedString.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsEmbedString.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsEmbedString.java
index 162a0ad89c..ad9d4538e7 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsEmbedString.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsEmbedString.java
@@ -28,7 +28,7 @@
package org.eclipse.swt.internal.mozilla;
public class nsEmbedString {
- int /*long*/ handle;
+ long /*int*/ handle;
public nsEmbedString() {
handle = XPCOM.nsEmbedString_new();
@@ -42,14 +42,14 @@ public nsEmbedString(String string) {
}
}
-public int /*long*/ getAddress() {
+public long /*int*/ getAddress() {
return handle;
}
public String toString() {
if (handle == 0) return null;
int length = XPCOM.nsEmbedString_Length(handle);
- int /*long*/ buffer = XPCOM.nsEmbedString_get(handle);
+ long /*int*/ buffer = XPCOM.nsEmbedString_get(handle);
char[] dest = new char[length];
XPCOM.memmove(dest, buffer, length * 2);
return new String(dest);