summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXDraw.c
diff options
context:
space:
mode:
authordas <das>2006-10-16 16:25:45 (GMT)
committerdas <das>2006-10-16 16:25:45 (GMT)
commitd32f7b110e6371cbfb6217419c386df6027a23f7 (patch)
tree7fe85dbecd56aceaca0ad440c76b9d8da1ec9993 /macosx/tkMacOSXDraw.c
parent4f306d130a4a7aebc2400686414ea942a7018762 (diff)
downloadtk-d32f7b110e6371cbfb6217419c386df6027a23f7.zip
tk-d32f7b110e6371cbfb6217419c386df6027a23f7.tar.gz
tk-d32f7b110e6371cbfb6217419c386df6027a23f7.tar.bz2
whitespace
Diffstat (limited to 'macosx/tkMacOSXDraw.c')
-rw-r--r--macosx/tkMacOSXDraw.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/macosx/tkMacOSXDraw.c b/macosx/tkMacOSXDraw.c
index 0094f84..455fc4d 100644
--- a/macosx/tkMacOSXDraw.c
+++ b/macosx/tkMacOSXDraw.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkMacOSXDraw.c,v 1.2.2.18 2006/10/16 15:35:50 das Exp $
+ * RCS: @(#) $Id: tkMacOSXDraw.c,v 1.2.2.19 2006/10/16 16:25:45 das Exp $
*/
#include "tkMacOSXInt.h"
@@ -651,7 +651,7 @@ XDrawLines(
CGContextStrokePath(outContext);
TkMacOSXReleaseCGContext(macWin, destPort, &outContext);
} else {
- int o = - (lw / 2);
+ int o = -lw/2;
TkMacOSXSetUpGraphicsPort(gc, destPort);
ShowPen();
@@ -727,7 +727,7 @@ void XDrawSegments(
}
TkMacOSXReleaseCGContext(macWin, destPort, &outContext);
} else {
- int o = - (lw / 2);
+ int o = -lw/2;
TkMacOSXSetUpGraphicsPort(gc, destPort);
ShowPen();
@@ -1359,7 +1359,7 @@ XFillArc(
} else {
Rect theRect;
short start, extent;
- int o = - (lw / 2);
+ int o = -lw/2;
PolyHandle polygon;
double sin1, cos1, sin2, cos2, angle;
double boxWidth, boxHeight;
@@ -1501,7 +1501,7 @@ XFillArcs(
} else {
Rect theRect;
short start, extent;
- int o = - (lw / 2);
+ int o = -lw/2;
PolyHandle polygon;
double sin1, cos1, sin2, cos2, angle;
double boxWidth, boxHeight;