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/nsIServiceManager.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIServiceManager.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIServiceManager.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIServiceManager.java
index 2f46a6913f..6b357810c4 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIServiceManager.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIServiceManager.java
@@ -37,15 +37,15 @@ public class nsIServiceManager extends nsISupports {
public static final nsID NS_ISERVICEMANAGER_IID =
new nsID(NS_ISERVICEMANAGER_IID_STR);
- public nsIServiceManager(int /*long*/ address) {
+ public nsIServiceManager(long /*int*/ address) {
super(address);
}
- public int GetService(nsID aClass, nsID aIID, int /*long*/[] result) {
+ public int GetService(nsID aClass, nsID aIID, long /*int*/[] result) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress(), aClass, aIID, result);
}
- public int GetServiceByContractID(byte[] aContractID, nsID aIID, int /*long*/[] result) {
+ public int GetServiceByContractID(byte[] aContractID, nsID aIID, long /*int*/[] result) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 2, getAddress(), aContractID, aIID, result);
}

Back to the top