diff options
author | hobbs <hobbs> | 2000-02-10 08:52:32 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-02-10 08:52:32 (GMT) |
commit | 6e3c3db8630f629578ea034020ae7d920aadf4ce (patch) | |
tree | 40bf71711635d8e5ad5dc9afe14eb82905661051 /generic/tkStubInit.c | |
parent | 6f20b944ba77825f85992c2f0bcff2dc497236df (diff) | |
download | tk-6e3c3db8630f629578ea034020ae7d920aadf4ce.zip tk-6e3c3db8630f629578ea034020ae7d920aadf4ce.tar.gz tk-6e3c3db8630f629578ea034020ae7d920aadf4ce.tar.bz2 |
* generic/tkImgGIF.c (FileReadGIF): added cast for trashBuffer
* generic/tkIntXlibDecls.h:
* generic/tkInt.decls: declared some Xlib emulation calls for
the Mac
* generic/tkFrame.c (TkInstallFrameMenu): added extra panic to
inform user of bad call when framePtr is NULL [Bug: 2530]
* generic/tkMenu.c (DestroyMenuInstance): Placed checks around
menu name objects before trying to incr the ref. [Bug: 3402]
* generic/tkTest.c: removed USE_OLD_IMAGE def for Mac
Diffstat (limited to 'generic/tkStubInit.c')
-rw-r--r-- | generic/tkStubInit.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tkStubInit.c b/generic/tkStubInit.c index 0b8472f..df67260 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.17 2000/02/09 02:13:51 hobbs Exp $ + * RCS: @(#) $Id: tkStubInit.c,v 1.18 2000/02/10 08:52:36 hobbs Exp $ */ #include "tkInt.h" @@ -664,6 +664,12 @@ TkIntXlibStubs tkIntXlibStubs = { XForceScreenSaver, /* 81 */ XDrawLine, /* 82 */ XFillRectangle, /* 83 */ + XClearWindow, /* 84 */ + XDrawPoint, /* 85 */ + XDrawPoints, /* 86 */ + XWarpPointer, /* 87 */ + XQueryColor, /* 88 */ + XQueryColors, /* 89 */ #endif /* MAC_TCL */ }; |