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/nsIDOMWindowCollection.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIDOMWindowCollection.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIDOMWindowCollection.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIDOMWindowCollection.java
index 663688ad78..e2500930b5 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIDOMWindowCollection.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIDOMWindowCollection.java
@@ -37,7 +37,7 @@ public class nsIDOMWindowCollection extends nsISupports {
public static final nsID NS_IDOMWINDOWCOLLECTION_IID =
new nsID(NS_IDOMWINDOWCOLLECTION_IID_STR);
- public nsIDOMWindowCollection(int /*long*/ address) {
+ public nsIDOMWindowCollection(long /*int*/ address) {
super(address);
}
@@ -45,11 +45,11 @@ public class nsIDOMWindowCollection extends nsISupports {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress(), aLength);
}
- public int Item(int index, int /*long*/[] _retval) {
+ public int Item(int index, long /*int*/[] _retval) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 2, getAddress(), index, _retval);
}
- public int NamedItem(int /*long*/ name, int /*long*/[] _retval) {
+ public int NamedItem(long /*int*/ name, long /*int*/[] _retval) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 3, getAddress(), name, _retval);
}
}

Back to the top