diff options
author | Silenio Quarti <silenio_quarti@ca.ibm.com> | 2012-10-15 15:02:46 -0400 |
---|---|---|
committer | Silenio Quarti <silenio_quarti@ca.ibm.com> | 2012-10-15 15:02:46 -0400 |
commit | 44a400ffa16c0a6daf37b0faae377089d19140f0 (patch) | |
tree | 945ea8927cf8789f1eeb2da9c0c731f751a8d7e7 | |
parent | d090fa149a4cb297f7af43a248a69e342be801ae (diff) | |
download | eclipse.platform.swt-44a400ffa16c0a6daf37b0faae377089d19140f0.tar.gz eclipse.platform.swt-44a400ffa16c0a6daf37b0faae377089d19140f0.tar.xz eclipse.platform.swt-44a400ffa16c0a6daf37b0faae377089d19140f0.zip |
fix 64 bit
-rw-r--r-- | bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java index 6421bcc696..0538b8c144 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java @@ -371,7 +371,7 @@ NSObject createString(int index) { return NSString.stringWith(text != null ? text : ""); } -void dealloc (int /*long*/ id, int /*long*/ sel) { +void dealloc (long /*int*/ id, long /*int*/ sel) { super.dealloc(id, sel); OS.object_setInstanceVariable(id, Display.SWT_OBJECT, 0); super.destroyJNIRef(); |