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/NSTrackingArea.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTrackingArea.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTrackingArea.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTrackingArea.java
index 648cd5ad37..3bb57c9ccc 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTrackingArea.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTrackingArea.java
@@ -16,7 +16,7 @@ public NSTrackingArea() {
super();
}
-public NSTrackingArea(int /*long*/ id) {
+public NSTrackingArea(long /*int*/ id) {
super(id);
}
@@ -24,18 +24,18 @@ public NSTrackingArea(id id) {
super(id);
}
-public NSTrackingArea initWithRect(NSRect rect, int /*long*/ options, id owner, NSDictionary userInfo) {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_initWithRect_options_owner_userInfo_, rect, options, owner != null ? owner.id : 0, userInfo != null ? userInfo.id : 0);
+public NSTrackingArea initWithRect(NSRect rect, long /*int*/ options, id owner, NSDictionary userInfo) {
+ long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_initWithRect_options_owner_userInfo_, rect, options, owner != null ? owner.id : 0, userInfo != null ? userInfo.id : 0);
return result == this.id ? this : (result != 0 ? new NSTrackingArea(result) : null);
}
public id owner() {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_owner);
+ long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_owner);
return result != 0 ? new id(result) : null;
}
public NSDictionary userInfo() {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_userInfo);
+ long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_userInfo);
return result != 0 ? new NSDictionary(result) : null;
}

Back to the top