summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebFrame.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebFrame.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebFrame.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebFrame.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebFrame.java
index 8e0f16aaf9..c686dd6f82 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebFrame.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebFrame.java
@@ -16,7 +16,7 @@ public WebFrame() {
super();
}
-public WebFrame(int /*long*/ id) {
+public WebFrame(long /*int*/ id) {
super(id);
}
@@ -25,16 +25,16 @@ public WebFrame(id id) {
}
public DOMDocument DOMDocument() {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_DOMDocument);
+ long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_DOMDocument);
return result != 0 ? new DOMDocument(result) : null;
}
public WebDataSource dataSource() {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_dataSource);
+ long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_dataSource);
return result != 0 ? new WebDataSource(result) : null;
}
-public int /*long*/ globalContext() {
+public long /*int*/ globalContext() {
return OS.objc_msgSend(this.id, OS.sel_globalContext);
}