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/NSComboBoxCell.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSComboBoxCell.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSComboBoxCell.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSComboBoxCell.java
index 28e94ae105..634c637bd8 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSComboBoxCell.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSComboBoxCell.java
@@ -19,7 +19,7 @@ public NSComboBoxCell() {
super();
}
-public NSComboBoxCell(long /*int*/ id) {
+public NSComboBoxCell(long id) {
super(id);
}
@@ -28,7 +28,7 @@ public NSComboBoxCell(id id) {
}
public NSArray objectValues() {
- long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_objectValues);
+ long result = OS.objc_msgSend(this.id, OS.sel_objectValues);
return result != 0 ? new NSArray(result) : null;
}

Back to the top