diff options
author | das <das> | 2007-07-02 13:27:04 (GMT) |
---|---|---|
committer | das <das> | 2007-07-02 13:27:04 (GMT) |
commit | 1f49c248b2b1f9f7efbeb6ebcc139bf7fcd659e3 (patch) | |
tree | 3ca91189dd02af46444c343ec426fe050cbdb8d2 /xlib/xgc.c | |
parent | f6c83cb452e565fe1f115dcdd68ad6df77c5d1e4 (diff) | |
download | tk-1f49c248b2b1f9f7efbeb6ebcc139bf7fcd659e3.zip tk-1f49c248b2b1f9f7efbeb6ebcc139bf7fcd659e3.tar.gz tk-1f49c248b2b1f9f7efbeb6ebcc139bf7fcd659e3.tar.bz2 |
typo
Diffstat (limited to 'xlib/xgc.c')
-rw-r--r-- | xlib/xgc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: xgc.c,v 1.6.2.4 2007/07/02 13:04:26 das Exp $ + * RCS: @(#) $Id: xgc.c,v 1.6.2.5 2007/07/02 13:27:04 das Exp $ */ #include <tkInt.h> @@ -74,7 +74,7 @@ XCreateGC(display, d, mask, values) gp->foreground = (mask & GCForeground) ?values->foreground : BlackPixelOfScreen(DefaultScreenOfDisplay(display)); gp->background = (mask & GCBackground) ?values->background : - WhitePixelOfScreen(DefaultScreenOfDisplay(display))); + WhitePixelOfScreen(DefaultScreenOfDisplay(display)); gp->line_width = (mask & GCLineWidth) ?values->line_width :1; gp->line_style = (mask & GCLineStyle) ?values->line_style :LineSolid; gp->cap_style = (mask & GCCapStyle) ?values->cap_style :0; |