From: <and...@us...> - 2022-09-20 21:31:54
|
Revision: 7367 http://sourceforge.net/p/nsis/code/7367 Author: anders_k Date: 2022-09-20 21:31:52 +0000 (Tue, 20 Sep 2022) Log Message: ----------- Fixed NSD_ClearIcon (bug #1286) Modified Paths: -------------- NSIS/trunk/Contrib/nsDialogs/nsDialogs.nsh Modified: NSIS/trunk/Contrib/nsDialogs/nsDialogs.nsh =================================================================== --- NSIS/trunk/Contrib/nsDialogs/nsDialogs.nsh 2022-09-20 21:29:38 UTC (rev 7366) +++ NSIS/trunk/Contrib/nsDialogs/nsDialogs.nsh 2022-09-20 21:31:52 UTC (rev 7367) @@ -1007,7 +1007,7 @@ !define NSD_ClearImage `!insertmacro __NSD_ClearImage ${IMAGE_BITMAP} ` !define NSD_ClearBitmap `${NSD_ClearImage} ` -!define NSD_ClearIcon `!insertmacro __NSD_ClearImage ${IMAGE_ICON } ` +!define NSD_ClearIcon `!insertmacro __NSD_ClearImage ${IMAGE_ICON} ` !macro __NSD_ClearImage _IMGTYPE CONTROL SendMessage ${CONTROL} ${STM_SETIMAGE} ${_IMGTYPE} 0 !macroend This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |