diff options
author | hobbs <hobbs> | 2002-04-12 10:10:48 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-04-12 10:10:48 (GMT) |
commit | c3e0d00464979b61e3ccc6107edf6d061278239d (patch) | |
tree | 5a848cb682145a0327b9219a4b0d9cdfd3eb7fac /generic/tkStubInit.c | |
parent | 8e510069debe72b6010098ecdac9867c534a5c6e (diff) | |
download | tk-c3e0d00464979b61e3ccc6107edf6d061278239d.zip tk-c3e0d00464979b61e3ccc6107edf6d061278239d.tar.gz tk-c3e0d00464979b61e3ccc6107edf6d061278239d.tar.bz2 |
* generic/tkStubInit.c:
* generic/tkIntPlatDecls.h:
* generic/tkIntDecls.h:
* generic/tkInt.decls: added TkFocusFree, TkClipCleanup and
TkGCCleanup generic private procs, and TkWmCleanup, TkSendCleanup
and TkFreeXId unix private procs.
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 450bab7..848fe96 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.31 2002/04/05 08:38:22 hobbs Exp $ + * RCS: @(#) $Id: tkStubInit.c,v 1.32 2002/04/12 10:10:48 hobbs Exp $ */ #include "tkInt.h" @@ -269,6 +269,9 @@ TkIntStubs tkIntStubs = { TkpInitKeymapInfo, /* 139 */ TkPhotoGetValidRegion, /* 140 */ TkWmStackorderToplevel, /* 141 */ + TkFocusFree, /* 142 */ + TkClipCleanup, /* 143 */ + TkGCCleanup, /* 144 */ }; TkIntPlatStubs tkIntPlatStubs = { @@ -284,6 +287,9 @@ TkIntPlatStubs tkIntPlatStubs = { TkUnixDoOneXEvent, /* 6 */ TkUnixSetMenubar, /* 7 */ TkpScanWindowId, /* 8 */ + TkWmCleanup, /* 9 */ + TkSendCleanup, /* 10 */ + TkFreeXId, /* 11 */ #endif /* UNIX */ #ifdef __WIN32__ TkAlignImageData, /* 0 */ |