summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2003-08-12 18:32:35 +0000
committerSilenio Quarti <silenio>2003-08-12 18:32:35 +0000
commit76b746cb9711145f0081c4dd99990f0cd9582fe2 (patch)
tree7274963217531f443f687ba1bd25efbe7a19b55f
parentf3b7fba4d5b00aff73e93946515c0a614041198a (diff)
downloadeclipse.platform.swt-76b746cb9711145f0081c4dd99990f0cd9582fe2.tar.gz
eclipse.platform.swt-76b746cb9711145f0081c4dd99990f0cd9582fe2.tar.xz
eclipse.platform.swt-76b746cb9711145f0081c4dd99990f0cd9582fe2.zip
fixing arc param name
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java
index aeb023903b..5ebc44d87f 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java
@@ -217,7 +217,7 @@ public void dispose () {
* <li>ERROR_GRAPHIC_DISPOSED - if the receiver has been disposed</li>
* </ul>
*/
-public void drawArc(int x, int y, int width, int height, int startAngle, int endAngle) {
+public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) {
if (handle == 0) SWT.error(SWT.ERROR_GRAPHIC_DISPOSED);
if (width < 0) {
x = x + width;
@@ -227,10 +227,10 @@ public void drawArc(int x, int y, int width, int height, int startAngle, int end
y = y + height;
height = -height;
}
- if (width == 0 || height == 0 || endAngle == 0) {
+ if (width == 0 || height == 0 || arcAngle == 0) {
SWT.error(SWT.ERROR_INVALID_ARGUMENT);
}
- OS.XDrawArc(data.display,data.drawable,handle,x,y,width,height,startAngle * 64 ,endAngle * 64);
+ OS.XDrawArc(data.display, data.drawable, handle, x, y, width, height, startAngle * 64, arcAngle * 64);
}
/**
* Draws a rectangle, based on the specified arguments, which has
@@ -1162,7 +1162,7 @@ public boolean equals (Object object) {
*
* @see #drawArc
*/
-public void fillArc(int x, int y, int width, int height, int startAngle, int endAngle) {
+public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) {
if (handle == 0) SWT.error(SWT.ERROR_GRAPHIC_DISPOSED);
if (width < 0) {
x = x + width;
@@ -1172,14 +1172,14 @@ public void fillArc(int x, int y, int width, int height, int startAngle, int end
y = y + height;
height = -height;
}
- if (width == 0 || height == 0 || endAngle == 0) {
+ if (width == 0 || height == 0 || arcAngle == 0) {
SWT.error(SWT.ERROR_INVALID_ARGUMENT);
}
int xDisplay = data.display;
XGCValues values = new XGCValues ();
OS.XGetGCValues (xDisplay, handle, OS.GCForeground | OS.GCBackground, values);
OS.XSetForeground (xDisplay, handle, values.background);
- OS.XFillArc(xDisplay,data.drawable,handle,x,y,width,height,startAngle * 64 ,endAngle * 64);
+ OS.XFillArc(xDisplay, data.drawable, handle, x, y, width, height, startAngle * 64, arcAngle * 64);
OS.XSetForeground (xDisplay, handle, values.foreground);
}