diff options
author | hobbs <hobbs> | 1999-07-31 03:36:49 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-07-31 03:36:49 (GMT) |
commit | 4b6fc34cb54c1772dd9e2242f90fe9bd913fb362 (patch) | |
tree | b958c380f80005c614689d4cfcb361db1c27e370 /generic/tkStubInit.c | |
parent | c57cafd660a628dcc78a30e31a10ae99cb6834c3 (diff) | |
download | tk-4b6fc34cb54c1772dd9e2242f90fe9bd913fb362.zip tk-4b6fc34cb54c1772dd9e2242f90fe9bd913fb362.tar.gz tk-4b6fc34cb54c1772dd9e2242f90fe9bd913fb362.tar.bz2 |
1999-07-30 Jeff Hobbs <hobbs@scriptics.com>
* tkInt.decls: Added stub entry for XFillRectangle [Bug: 2446]
Diffstat (limited to 'generic/tkStubInit.c')
-rw-r--r-- | generic/tkStubInit.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tkStubInit.c b/generic/tkStubInit.c index 18dab1e..3fd720f 100644 --- a/generic/tkStubInit.c +++ b/generic/tkStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkStubInit.c,v 1.9 1999/06/16 20:11:29 surles Exp $ + * RCS: @(#) $Id: tkStubInit.c,v 1.10 1999/07/31 03:36:49 hobbs Exp $ */ #include "tkInt.h" @@ -566,6 +566,8 @@ TkIntXlibStubs tkIntXlibStubs = { XSetWMClientMachine, /* 102 */ XStringListToTextProperty, /* 103 */ XDrawLine, /* 104 */ + NULL, /* 105 */ + XFillRectangle, /* 106 */ #endif /* __WIN32__ */ #ifdef MAC_TCL NULL, /* 0 */ @@ -651,6 +653,7 @@ TkIntXlibStubs tkIntXlibStubs = { XDrawSegments, /* 80 */ XForceScreenSaver, /* 81 */ XDrawLine, /* 82 */ + XFillRectangle, /* 83 */ #endif /* MAC_TCL */ }; |