summaryrefslogtreecommitdiffstats
path: root/generic/tkInt.h
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2001-08-21 14:43:08 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2001-08-21 14:43:08 (GMT)
commitc9fb1f587664806275461fcf4b872e8acdd913b9 (patch)
tree7e8433d81799a34d2318762f17b82e43ed5300d6 /generic/tkInt.h
parent7f3008ca65c1e1b6e1b5079bd1eb28794c9e02fb (diff)
downloadtk-c9fb1f587664806275461fcf4b872e8acdd913b9.zip
tk-c9fb1f587664806275461fcf4b872e8acdd913b9.tar.gz
tk-c9fb1f587664806275461fcf4b872e8acdd913b9.tar.bz2
TkGetWindowFromObj was useless CPU waster; now caches window names *safely*
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r--generic/tkInt.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h
index a39fa91..e94f0c6 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.36 2001/08/15 15:44:36 dkf Exp $
+ * RCS: $Id: tkInt.h,v 1.37 2001/08/21 14:43:08 dkf Exp $
*/
#ifndef _TKINT
@@ -474,6 +474,11 @@ typedef struct TkDisplay {
int warpX;
int warpY;
int useInputMethods; /* Whether to use input methods */
+
+ /*
+ * The following field(s) were all added for Tk8.4
+ */
+ long deletionEpoch; /* Incremented by window deletions */
} TkDisplay;
/*