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/NSNotification.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSNotification.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSNotification.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSNotification.java
index 15d0e350cf..90c679135b 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSNotification.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSNotification.java
@@ -19,7 +19,7 @@ public NSNotification() {
super();
}
-public NSNotification(long /*int*/ id) {
+public NSNotification(long id) {
super(id);
}
@@ -28,12 +28,12 @@ public NSNotification(id id) {
}
public id object() {
- long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_object);
+ long result = OS.objc_msgSend(this.id, OS.sel_object);
return result != 0 ? new id(result) : null;
}
public NSDictionary userInfo() {
- long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_userInfo);
+ long result = OS.objc_msgSend(this.id, OS.sel_userInfo);
return result != 0 ? new NSDictionary(result) : null;
}

Back to the top