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/NSAppleEventDescriptor.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSAppleEventDescriptor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSAppleEventDescriptor.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSAppleEventDescriptor.java
index 6790acbe91..f07f936e24 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSAppleEventDescriptor.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSAppleEventDescriptor.java
@@ -16,7 +16,7 @@ public NSAppleEventDescriptor() {
super();
}
-public NSAppleEventDescriptor(int /*long*/ id) {
+public NSAppleEventDescriptor(long /*int*/ id) {
super(id);
}
@@ -25,7 +25,7 @@ public NSAppleEventDescriptor(id id) {
}
public NSAppleEventDescriptor initListDescriptor() {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_initListDescriptor);
+ long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_initListDescriptor);
return result == this.id ? this : (result != 0 ? new NSAppleEventDescriptor(result) : null);
}

Back to the top