summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das>2006-10-16 16:25:38 (GMT)
committerdas <das>2006-10-16 16:25:38 (GMT)
commit83aab7fedf00cc26580090126e71ba67d1c469f8 (patch)
treef8d8867cbe38ff75aa6340da5e80b1eba4c73f4e
parent7ab081b370f463c2ce87e3bc7fef8b0a5668fa6f (diff)
downloadtk-83aab7fedf00cc26580090126e71ba67d1c469f8.zip
tk-83aab7fedf00cc26580090126e71ba67d1c469f8.tar.gz
tk-83aab7fedf00cc26580090126e71ba67d1c469f8.tar.bz2
whitespace
-rw-r--r--macosx/tkMacOSXDraw.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/macosx/tkMacOSXDraw.c b/macosx/tkMacOSXDraw.c
index d662c2e..06a52a2 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.17 2006/10/16 15:35:28 das Exp $
+ * RCS: @(#) $Id: tkMacOSXDraw.c,v 1.18 2006/10/16 16:25:38 das Exp $
*/
#include "tkMacOSXInt.h"
@@ -649,7 +649,7 @@ XDrawLines(
CGContextStrokePath(outContext);
TkMacOSXReleaseCGContext(macWin, destPort, &outContext);
} else {
- int o = - (lw / 2);
+ int o = -lw/2;
TkMacOSXSetUpGraphicsPort(gc, destPort);
ShowPen();
@@ -725,7 +725,7 @@ void XDrawSegments(
}
TkMacOSXReleaseCGContext(macWin, destPort, &outContext);
} else {
- int o = - (lw / 2);
+ int o = -lw/2;
TkMacOSXSetUpGraphicsPort(gc, destPort);
ShowPen();
@@ -1357,7 +1357,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;
@@ -1499,7 +1499,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;