diff options
author | hobbs <hobbs> | 2002-04-12 10:06:09 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-04-12 10:06:09 (GMT) |
commit | e2e2cc0eeeeea2ae3b6184e1e48e98a75c47fab4 (patch) | |
tree | dcc25f95c8ad275eff78ab29937f2130a80faa0d /generic/tkInt.h | |
parent | 67e59fed0e52fb590b464f7db10792ea35ec612a (diff) | |
download | tk-e2e2cc0eeeeea2ae3b6184e1e48e98a75c47fab4.zip tk-e2e2cc0eeeeea2ae3b6184e1e48e98a75c47fab4.tar.gz tk-e2e2cc0eeeeea2ae3b6184e1e48e98a75c47fab4.tar.bz2 |
* generic/tkInt.h:
* unix/tkUnixXId.c (TkFreeXId): frees XID resources.
Made idCleanupScheduled a Tcl_TimerToken (was int) in TkDisplay
structure to allow us to delete the timer scheduled for it.
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 44c9f67..75ac87f 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: $Id: tkInt.h,v 1.43 2002/04/05 08:41:07 hobbs Exp $ + * RCS: $Id: tkInt.h,v 1.44 2002/04/12 10:06:09 hobbs Exp $ */ #ifndef _TKINT @@ -423,8 +423,9 @@ typedef struct TkDisplay { /* First in list of chunks of window * identifers that can't be reused right * now. */ - int idCleanupScheduled; /* 1 means a call to WindowIdCleanup has - * already been scheduled, 0 means it + Tcl_TimerToken idCleanupScheduled; + /* If set, it means a call to WindowIdCleanup + * has already been scheduled, 0 means it * hasn't. */ /* |