fixed bug #1155060 - Install type drop down box not showing default InstType

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3925 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-03-19 11:56:23 +00:00
parent b42f4595b1
commit 326556f0e3
2 changed files with 26 additions and 36 deletions

View file

@ -29,22 +29,16 @@ void NSISCALL build_g_logfile(void);
// update message used by DirProc and SelProc for space display
#define WM_IN_UPDATEMSG (WM_USER+0xf)
// the selected insttype has changed
#define WM_NOTIFY_INSTTYPE_CHANGE (WM_USER+0x32)
// custom pages should send this message to let NSIS know they're ready
#define WM_NOTIFY_CUSTOM_READY (WM_USER+0xd)
// simulates clicking on the tree
#define WM_TREEVIEW_KEYHACK (WM_USER+0x13)
// section text changed
#define WM_NOTIFY_SECTEXT (WM_USER+0x17)
// section flags changed
#define WM_NOTIFY_SECFLAGS (WM_USER+0x18)
// notifies a component selection change (.onMouseOverSection)
#define WM_NOTIFY_SELCHANGE (WM_USER+0x19)
// Notifies the installation type has changed by the user
#define WM_NOTIFY_INSTTYPE_CHANGED (WM_USER+0x20)
#endif//_UI_H_