Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIPrefLocalizedString.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIPrefLocalizedString.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIPrefLocalizedString.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIPrefLocalizedString.java
index ba0c32ac15..85ce21935a 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIPrefLocalizedString.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIPrefLocalizedString.java
@@ -37,11 +37,11 @@ public class nsIPrefLocalizedString extends nsISupports {
public static final nsID NS_IPREFLOCALIZEDSTRING_IID =
new nsID(NS_IPREFLOCALIZEDSTRING_IID_STR);
- public nsIPrefLocalizedString(int /*long*/ address) {
+ public nsIPrefLocalizedString(long /*int*/ address) {
super(address);
}
- public int GetData(int /*long*/[] aData) {
+ public int GetData(long /*int*/[] aData) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress(), aData);
}
@@ -49,7 +49,7 @@ public class nsIPrefLocalizedString extends nsISupports {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 2, getAddress(), aData);
}
- public int ToString(int /*long*/[] _retval) {
+ public int ToString(long /*int*/[] _retval) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 3, getAddress(), _retval);
}

Back to the top