diff options
author | das <das> | 2005-05-29 06:46:56 (GMT) |
---|---|---|
committer | das <das> | 2005-05-29 06:46:56 (GMT) |
commit | e61ef2966a0632ac4bcbee02a7de3f755d4ff9bb (patch) | |
tree | 5cf14c3b7101c7977927e2753494667b8a1189b6 /generic/tkStubInit.c | |
parent | 99166f48dd544d3fef849683b0b40175d7238547 (diff) | |
download | tk-e61ef2966a0632ac4bcbee02a7de3f755d4ff9bb.zip tk-e61ef2966a0632ac4bcbee02a7de3f755d4ff9bb.tar.gz tk-e61ef2966a0632ac4bcbee02a7de3f755d4ff9bb.tar.bz2 |
* generic/tkDecls.h:
* generic/tkIntPlatDecls.h:
* generic/tkPlatDecls.h:
* generic/tkStubInit.c: ran missing 'make genstubs' for TIP245 changes
to tk.decls
* macosx/tkMacOSXXStubs.c (Tk_ResetUserInactiveTime): use symbolic
constant argument in call to UpdateSystemActivity();
* macosx/Wish.pbproj/project.pbxproj:
* macosx/Wish.xcode/project.pbxproj:
* unix/configure.in: added/corrected linking to IOKit.framework for
TIP245.
* unix/configure.in: skip X11 configure checks when building tk_aqua.
* unix/configure: autoconf-2.59
Diffstat (limited to 'generic/tkStubInit.c')
-rw-r--r-- | generic/tkStubInit.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/generic/tkStubInit.c b/generic/tkStubInit.c index 0b81411..bc415e5 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.49 2005/01/07 15:18:03 chengyemao Exp $ + * RCS: @(#) $Id: tkStubInit.c,v 1.50 2005/05/29 06:47:05 das Exp $ */ #include "tkInt.h" @@ -336,8 +336,6 @@ TkIntPlatStubs tkIntPlatStubs = { TkWinGetPlatformId, /* 33 */ TkWinSetHINSTANCE, /* 34 */ TkWinGetPlatformTheme, /* 35 */ - TkWinCleanupContainerList, /* 36 */ - TkpWmGetState, /* 37 */ #endif /* __WIN32__ */ #ifdef MAC_OSX_TK TkGenerateActivateEvents, /* 0 */ @@ -629,8 +627,6 @@ TkPlatStubs tkPlatStubs = { Tk_HWNDToWindow, /* 3 */ Tk_PointerEvent, /* 4 */ Tk_TranslateWinEvent, /* 5 */ - Tk_GetMenuHWND, /* 6 */ - Tk_GetEmbeddedMenuHWND, /* 7 */ #endif /* __WIN32__ */ #ifdef MAC_OSX_TK Tk_MacOSXSetEmbedHandler, /* 0 */ @@ -926,6 +922,8 @@ TkStubs tkStubs = { Tk_PhotoPutBlock, /* 266 */ Tk_PhotoPutZoomedBlock, /* 267 */ Tk_PhotoSetSize, /* 268 */ + Tk_GetUserInactiveTime, /* 269 */ + Tk_ResetUserInactiveTime, /* 270 */ }; /* !END!: Do not edit above this line. */ |