diff options
author | das <das> | 2007-06-03 13:44:39 (GMT) |
---|---|---|
committer | das <das> | 2007-06-03 13:44:39 (GMT) |
commit | cfcb8cf1322710fac5a0cdfeb0fa32d44135fb20 (patch) | |
tree | 9248438c5bba7b4ad8f6827e210d7109fa3b588f /macosx/tkMacOSXDraw.c | |
parent | 548cd0a9199d94cff930af7f3fd282880fe94a7e (diff) | |
download | tk-cfcb8cf1322710fac5a0cdfeb0fa32d44135fb20.zip tk-cfcb8cf1322710fac5a0cdfeb0fa32d44135fb20.tar.gz tk-cfcb8cf1322710fac5a0cdfeb0fa32d44135fb20.tar.bz2 |
* macosx/tkMacOSXDraw.c: comment formatting fix for Xcode 3.0.
* macosx/tkMacOSXEmbed.c:
* macosx/tkMacOSXEntry.c:
* macosx/tkMacOSXFont.c:
* macosx/tkMacOSXKeyEvent.c:
* macosx/tkMacOSXKeyboard.c:
* macosx/tkMacOSXMenus.c:
* macosx/tkMacOSXSend.c:
* macosx/tkMacOSXSubwindows.c:
* macosx/tkMacOSXWindowEvent.c:
* macosx/tkMacOSXWm.c:
* macosx/tkMacOSXXStubs.c:
Diffstat (limited to 'macosx/tkMacOSXDraw.c')
-rw-r--r-- | macosx/tkMacOSXDraw.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/macosx/tkMacOSXDraw.c b/macosx/tkMacOSXDraw.c index c9dbdfb..42792b1 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.23 2007/05/31 13:38:13 das Exp $ + * RCS: @(#) $Id: tkMacOSXDraw.c,v 1.24 2007/06/03 13:44:39 das Exp $ */ #include "tkMacOSXInt.h" @@ -601,7 +601,11 @@ XDrawLines( int i, lw = gc->line_width; if (npoints < 2) { - return; /* TODO: generate BadValue error. */ + /* + * TODO: generate BadValue error. + */ + + return; } display->request++; @@ -1560,9 +1564,8 @@ TkMacOSXSetUpGraphicsPort( } if (gc->line_style != LineSolid) { /* - * FIXME: - * Here the dash pattern should be set in the drawing environment. - * This is not possible with QuickDraw line drawing. + * FIXME: Here the dash pattern should be set in the drawing + * environment. This is not possible with QuickDraw line drawing. */ } } |