summaryrefslogtreecommitdiffstats
path: root/xlib/xgc.c
diff options
context:
space:
mode:
authordas <das>2007-01-03 08:22:08 (GMT)
committerdas <das>2007-01-03 08:22:08 (GMT)
commitb89f2e9fa3ed933c2d1599be0cdc0f4616ae17c7 (patch)
treec729a38ab8e7028cb7e1dd47905d8372b6bde6ed /xlib/xgc.c
parent9b10425ddef4f8b3cfa14729868d50d8b5589da4 (diff)
downloadtk-b89f2e9fa3ed933c2d1599be0cdc0f4616ae17c7.zip
tk-b89f2e9fa3ed933c2d1599be0cdc0f4616ae17c7.tar.gz
tk-b89f2e9fa3ed933c2d1599be0cdc0f4616ae17c7.tar.bz2
fix breakage in last commit
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 ba65d55..307617f 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.10 2007/01/02 23:39:40 dkf Exp $
+ * RCS: @(#) $Id: xgc.c,v 1.11 2007/01/03 08:22:08 das Exp $
*/
#include <tkInt.h>
@@ -66,7 +66,7 @@ XCreateGC(
#define InitField(name,maskbit,default) \
(gp->name = (mask & (maskbit)) ? values->name : (default))
- InitField(function, GCFunction, GXCopy);
+ InitField(function, GCFunction, GXcopy);
InitField(plane_mask, GCPlaneMask, (unsigned long)(~0));
InitField(foreground, GCForeground, 0);
InitField(background, GCBackground, 0xffffff);