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 /macosx/tkMacOSXXStubs.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 'macosx/tkMacOSXXStubs.c')
-rw-r--r-- | macosx/tkMacOSXXStubs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tkMacOSXXStubs.c b/macosx/tkMacOSXXStubs.c index d79cf12..d75c52f 100644 --- a/macosx/tkMacOSXXStubs.c +++ b/macosx/tkMacOSXXStubs.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXXStubs.c,v 1.10 2005/05/27 23:14:29 dkf Exp $ + * RCS: @(#) $Id: tkMacOSXXStubs.c,v 1.11 2005/05/29 06:47:05 das Exp $ */ #include "tkInt.h" @@ -1060,5 +1060,5 @@ Tk_GetUserInactiveTime(Display *dpy) void Tk_ResetUserInactiveTime(Display *dpy) { - UpdateSystemActivity(0); + UpdateSystemActivity(OverallAct); } |