diff options
author | lfb <lfb@noemail.net> | 1999-03-09 02:48:44 (GMT) |
---|---|---|
committer | lfb <lfb@noemail.net> | 1999-03-09 02:48:44 (GMT) |
commit | 6cb0fdc4c2105f3e168b224d91e41321d5f2f954 (patch) | |
tree | 01011e04146f003503fb460741734d45dcc1b8bd /win/tkWinWm.c | |
parent | 7222432d2ef63d942ac05b74dd9dcba7ffa5ed26 (diff) | |
download | tk-6cb0fdc4c2105f3e168b224d91e41321d5f2f954.zip tk-6cb0fdc4c2105f3e168b224d91e41321d5f2f954.tar.gz tk-6cb0fdc4c2105f3e168b224d91e41321d5f2f954.tar.bz2 |
* win/makefile.vc: Added THREADDEFINES for building with
threads enabled. Added tclThreadTest.obj to list of
targets for building tktest.
FossilOrigin-Name: 5ac37bf1d3a4c630f28c430f867e18be7b81c021
Diffstat (limited to 'win/tkWinWm.c')
-rw-r--r-- | win/tkWinWm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tkWinWm.c b/win/tkWinWm.c index 51dd28d..d3689b1 100644 --- a/win/tkWinWm.c +++ b/win/tkWinWm.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: tkWinWm.c,v 1.1.4.10 1999/03/09 01:47:27 lfb Exp $ + * RCS: @(#) $Id: tkWinWm.c,v 1.1.4.11 1999/03/09 02:48:44 lfb Exp $ */ #include "tkWinInt.h" @@ -351,9 +351,9 @@ InitWm(void) */ #ifdef TCL_THREADS - childClass.style = CS_HREDRAW | CS_VREDRAW; + classPtr->style = CS_HREDRAW | CS_VREDRAW; #else - childClass.style = CS_HREDRAW | CS_VREDRAW | CS_CLASSDC; + classPtr->style = CS_HREDRAW | CS_VREDRAW | CS_CLASSDC; #endif classPtr->cbClsExtra = 0; classPtr->cbWndExtra = 0; |