diff options
author | das <das> | 2006-09-07 06:37:28 (GMT) |
---|---|---|
committer | das <das> | 2006-09-07 06:37:28 (GMT) |
commit | d67f1f248def59af5218e27beef042d21fc4e5f3 (patch) | |
tree | 6963d7cc0848c60da6557f089641943826037e7e /generic/tkWindow.c | |
parent | cb44d676da5035f163cc11087f72fcd583dc157e (diff) | |
download | tk-d67f1f248def59af5218e27beef042d21fc4e5f3.zip tk-d67f1f248def59af5218e27beef042d21fc4e5f3.tar.gz tk-d67f1f248def59af5218e27beef042d21fc4e5f3.tar.bz2 |
* generic/tkWindow.c: add #include "tclInt.h" now required due to use
of tcl internal Tcl_CreateNamespace() in previous commit.
Diffstat (limited to 'generic/tkWindow.c')
-rw-r--r-- | generic/tkWindow.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tkWindow.c b/generic/tkWindow.c index bf6676b..fe310b7 100644 --- a/generic/tkWindow.c +++ b/generic/tkWindow.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: tkWindow.c,v 1.56.2.11 2006/09/06 22:01:26 hobbs Exp $ + * RCS: @(#) $Id: tkWindow.c,v 1.56.2.12 2006/09/07 06:37:29 das Exp $ */ #include "tkPort.h" @@ -22,6 +22,8 @@ #include "tkUnixInt.h" #endif +#include "tclInt.h" /* for Tcl_CreateNamespace() */ + /* * Type used to keep track of Window objects that were * only partically deallocated by Tk_DestroyWindow. |