Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/internal/webkit/IWebURLCredential.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/internal/webkit/IWebURLCredential.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/internal/webkit/IWebURLCredential.java b/bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/internal/webkit/IWebURLCredential.java
index d2979c50e7..cfb5a2fbf2 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/internal/webkit/IWebURLCredential.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/internal/webkit/IWebURLCredential.java
@@ -15,7 +15,7 @@ import org.eclipse.swt.internal.ole.win32.*;
public class IWebURLCredential extends IUnknown {
-public IWebURLCredential (int /*long*/ address) {
+public IWebURLCredential (long /*int*/ address) {
super (address);
}
@@ -23,15 +23,15 @@ public int hasPassword (int[] result) {
return COM.VtblCall (3, getAddress (), result);
}
-public int initWithUser (int /*long*/ user, int /*long*/ password, int /*long*/ persistence) {
+public int initWithUser (long /*int*/ user, long /*int*/ password, long /*int*/ persistence) {
return COM.VtblCall (4, getAddress (), user, password, persistence);
}
-public int password (int /*long*/[] password) {
+public int password (long /*int*/[] password) {
return COM.VtblCall (5, getAddress (), password);
}
-public int user (int /*long*/[] result) {
+public int user (long /*int*/[] result) {
return COM.VtblCall (7, getAddress (), result);
}

Back to the top