summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIUploadChannel.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIUploadChannel.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIUploadChannel.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIUploadChannel.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIUploadChannel.java
index 9a8dc985b9..582f637afd 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIUploadChannel.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIUploadChannel.java
@@ -37,15 +37,15 @@ public class nsIUploadChannel extends nsISupports {
public static final nsID NS_IUPLOADCHANNEL_IID =
new nsID(NS_IUPLOADCHANNEL_IID_STR);
- public nsIUploadChannel(int /*long*/ address) {
+ public nsIUploadChannel(long /*int*/ address) {
super(address);
}
- public int SetUploadStream(int /*long*/ aStream, int /*long*/ aContentType, int aContentLength) {
+ public int SetUploadStream(long /*int*/ aStream, long /*int*/ aContentType, int aContentLength) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress(), aStream, aContentType, aContentLength);
}
- public int GetUploadStream(int /*long*/[] aUploadStream) {
+ public int GetUploadStream(long /*int*/[] aUploadStream) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 2, getAddress(), aUploadStream);
}
}