Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebPreferences.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebPreferences.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebPreferences.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebPreferences.java
index 4668726e33..ff6d7739cd 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebPreferences.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/WebPreferences.java
@@ -19,7 +19,7 @@ public WebPreferences() {
super();
}
-public WebPreferences(long /*int*/ id) {
+public WebPreferences(long id) {
super(id);
}
@@ -36,7 +36,7 @@ public void setJavaScriptEnabled(boolean javaScriptEnabled) {
}
public static WebPreferences standardPreferences() {
- long /*int*/ result = OS.objc_msgSend(OS.class_WebPreferences, OS.sel_standardPreferences);
+ long result = OS.objc_msgSend(OS.class_WebPreferences, OS.sel_standardPreferences);
return result != 0 ? new WebPreferences(result) : null;
}

Back to the top