diff options
author | das <das@noemail.net> | 2006-10-16 16:25:38 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2006-10-16 16:25:38 (GMT) |
commit | 9ecfc35e3409f0fe93997e16087f94264f3891f6 (patch) | |
tree | f8d8867cbe38ff75aa6340da5e80b1eba4c73f4e /macosx | |
parent | 68a0ea2b90180236d56bf0b51333359f94b1bbee (diff) | |
download | tk-9ecfc35e3409f0fe93997e16087f94264f3891f6.zip tk-9ecfc35e3409f0fe93997e16087f94264f3891f6.tar.gz tk-9ecfc35e3409f0fe93997e16087f94264f3891f6.tar.bz2 |
whitespace
FossilOrigin-Name: 7740ce13d87e2258695707f404be7bf6123267d2
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXDraw.c | 10 |
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; |