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/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 6e53b40231..2bfe53ddac 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
@@ -19,7 +19,7 @@ public NSProgressIndicator() {
super();
}
-public NSProgressIndicator(long /*int*/ id) {
+public NSProgressIndicator(long id) {
super(id);
}
@@ -27,7 +27,7 @@ public NSProgressIndicator(id id) {
super(id);
}
-public long /*int*/ controlSize() {
+public long controlSize() {
return OS.objc_msgSend(this.id, OS.sel_controlSize);
}
@@ -43,7 +43,7 @@ public double minValue() {
return OS.objc_msgSend_fpret(this.id, OS.sel_minValue);
}
-public void setControlSize(long /*int*/ controlSize) {
+public void setControlSize(long controlSize) {
OS.objc_msgSend(this.id, OS.sel_setControlSize_, controlSize);
}

Back to the top