diff options
author | das <das> | 2008-06-12 06:36:03 (GMT) |
---|---|---|
committer | das <das> | 2008-06-12 06:36:03 (GMT) |
commit | 039a896f74fccae55207cb8052b01ca9e039ec99 (patch) | |
tree | 27a6046e27c2103d99139589c6465be3553bad8d /macosx/tkMacOSXXStubs.c | |
parent | 47fb852c7c3e10d76e61eb41c21c80ca5a9225c3 (diff) | |
download | tk-039a896f74fccae55207cb8052b01ca9e039ec99.zip tk-039a896f74fccae55207cb8052b01ca9e039ec99.tar.gz tk-039a896f74fccae55207cb8052b01ca9e039ec99.tar.bz2 |
* macosx/tkMacOSXXStubs.c (Tk_ResetUserInactiveTime): use UsrActivity
instead of OverallAct (which may be ignored in some circumstances).
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 f7f0f8a..ff25774 100644 --- a/macosx/tkMacOSXXStubs.c +++ b/macosx/tkMacOSXXStubs.c @@ -13,7 +13,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.25.2.1 2008/05/03 21:09:16 das Exp $ + * RCS: @(#) $Id: tkMacOSXXStubs.c,v 1.25.2.2 2008/06/12 06:36:07 das Exp $ */ #include "tkMacOSXPrivate.h" @@ -1306,5 +1306,5 @@ void Tk_ResetUserInactiveTime( Display *dpy) { - UpdateSystemActivity(OverallAct); + UpdateSystemActivity(UsrActivity); } |