diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-12-08 08:24:22 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-12-08 08:24:22 (GMT) |
commit | 4eefa7b3a6b659a083c0697a4ded7779823b495c (patch) | |
tree | bd3df997ce339709a3ac2d29274ad22cb4b5da46 /win/tkWinDialog.c | |
parent | 2fa093a5cf1c12cb8ea6d81647899312643b89e5 (diff) | |
download | tk-4eefa7b3a6b659a083c0697a4ded7779823b495c.zip tk-4eefa7b3a6b659a083c0697a4ded7779823b495c.tar.gz tk-4eefa7b3a6b659a083c0697a4ded7779823b495c.tar.bz2 |
Eliminate USE_OLD_TAG_SEARCH: It isn't used and tested any more.
Eliminate a ton of unnecessary type casts
Diffstat (limited to 'win/tkWinDialog.c')
-rw-r--r-- | win/tkWinDialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tkWinDialog.c b/win/tkWinDialog.c index d8eec68..5a9034d 100644 --- a/win/tkWinDialog.c +++ b/win/tkWinDialog.c @@ -3022,7 +3022,7 @@ SetTkDialog( Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData)); char buf[32]; - sprintf(buf, "0x%p", (HWND) clientData); + sprintf(buf, "0x%p", clientData); Tcl_SetVar2(tsdPtr->debugInterp, "tk_dialog", NULL, buf, TCL_GLOBAL_ONLY); } |