diff options
author | hobbs <hobbs@noemail.net> | 2005-03-08 21:53:12 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2005-03-08 21:53:12 (GMT) |
commit | 028e7b8ede2b607830b34f92ed3026e14fb0d660 (patch) | |
tree | 6440856eed7936a37dd815394895713c87fe3977 | |
parent | 85eda210e33af728926b9287fda13e5a3c710232 (diff) | |
download | tk-028e7b8ede2b607830b34f92ed3026e14fb0d660.zip tk-028e7b8ede2b607830b34f92ed3026e14fb0d660.tar.gz tk-028e7b8ede2b607830b34f92ed3026e14fb0d660.tar.bz2 |
* win/tkWinWm.c (WinSetIcon): fix GCLP_ICONSM -> GCLP_HICONSM.
FossilOrigin-Name: 80fb423717da1fa8eaee6cbf6fa08e18f5c9545e
-rw-r--r-- | win/tkWinWm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinWm.c b/win/tkWinWm.c index de56e6e..f4936eb 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.54.2.18 2005/02/11 20:35:09 hobbs Exp $ + * RCS: @(#) $Id: tkWinWm.c,v 1.54.2.19 2005/03/08 21:53:13 hobbs Exp $ */ #include "tkWinInt.h" @@ -1173,7 +1173,7 @@ TkWinGetIcon(Tk_Window tkwin, DWORD iconsize) if (icon == (HICON) NULL) { #ifdef _WIN64 icon = (HICON) GetClassLongPtr(wmPtr->wrapper, - (iconsize == ICON_BIG) ? GCLP_HICON : GCLP_ICONSM); + (iconsize == ICON_BIG) ? GCLP_HICON : GCLP_HICONSM); #else icon = (HICON) GetClassLong(wmPtr->wrapper, (iconsize == ICON_BIG) ? GCL_HICON : GCL_HICONSM); |