summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSProgressIndicator.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSProgressIndicator.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSProgressIndicator.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSProgressIndicator.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSProgressIndicator.java
index 7f1fd6bf0e..31f90b1863 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSProgressIndicator.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSProgressIndicator.java
@@ -16,7 +16,7 @@ public NSProgressIndicator() {
super();
}
-public NSProgressIndicator(int /*long*/ id) {
+public NSProgressIndicator(long /*int*/ id) {
super(id);
}
@@ -24,7 +24,7 @@ public NSProgressIndicator(id id) {
super(id);
}
-public int /*long*/ controlSize() {
+public long /*int*/ controlSize() {
return OS.objc_msgSend(this.id, OS.sel_controlSize);
}
@@ -40,7 +40,7 @@ public double minValue() {
return OS.objc_msgSend_fpret(this.id, OS.sel_minValue);
}
-public void setControlSize(int /*long*/ size) {
+public void setControlSize(long /*int*/ size) {
OS.objc_msgSend(this.id, OS.sel_setControlSize_, size);
}