diff options
author | das <das> | 2007-01-03 08:22:08 (GMT) |
---|---|---|
committer | das <das> | 2007-01-03 08:22:08 (GMT) |
commit | b89f2e9fa3ed933c2d1599be0cdc0f4616ae17c7 (patch) | |
tree | c729a38ab8e7028cb7e1dd47905d8372b6bde6ed | |
parent | 9b10425ddef4f8b3cfa14729868d50d8b5589da4 (diff) | |
download | tk-b89f2e9fa3ed933c2d1599be0cdc0f4616ae17c7.zip tk-b89f2e9fa3ed933c2d1599be0cdc0f4616ae17c7.tar.gz tk-b89f2e9fa3ed933c2d1599be0cdc0f4616ae17c7.tar.bz2 |
fix breakage in last commit
-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.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); |