summaryrefslogtreecommitdiffstats
path: root/xlib/xgc.c
diff options
context:
space:
mode:
authordas <das>2007-07-02 13:27:04 (GMT)
committerdas <das>2007-07-02 13:27:04 (GMT)
commit1f49c248b2b1f9f7efbeb6ebcc139bf7fcd659e3 (patch)
tree3ca91189dd02af46444c343ec426fe050cbdb8d2 /xlib/xgc.c
parentf6c83cb452e565fe1f115dcdd68ad6df77c5d1e4 (diff)
downloadtk-1f49c248b2b1f9f7efbeb6ebcc139bf7fcd659e3.zip
tk-1f49c248b2b1f9f7efbeb6ebcc139bf7fcd659e3.tar.gz
tk-1f49c248b2b1f9f7efbeb6ebcc139bf7fcd659e3.tar.bz2
typo
Diffstat (limited to 'xlib/xgc.c')
-rw-r--r--xlib/xgc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xlib/xgc.c b/xlib/xgc.c
index 6663efc..57c1110 100644
--- a/xlib/xgc.c
+++ b/xlib/xgc.c
@@ -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;