diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-05-24 20:27:01 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-05-24 20:27:01 +0000 |
commit | 16e765a9e03ef4ee99cbf4c03b06272eb3ebd398 (patch) | |
tree | 5b1b860497de80ff81bc5d2d163b96e1a06759c7 /plugins/Import/src/wizard.cpp | |
parent | 24914309cc6db275c5779078357861ddf22a469e (diff) |
Import: big icon in taskbar
git-svn-id: http://svn.miranda-ng.org/main/trunk@13818 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Import/src/wizard.cpp')
-rw-r--r-- | plugins/Import/src/wizard.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Import/src/wizard.cpp b/plugins/Import/src/wizard.cpp index 907ecbbe48..0bd02ced23 100644 --- a/plugins/Import/src/wizard.cpp +++ b/plugins/Import/src/wizard.cpp @@ -99,7 +99,8 @@ INT_PTR CALLBACK WizardDlgProc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lP SetWindowPos(hwndPage, 0, 0, 0, 0, 0, SWP_NOZORDER | SWP_NOSIZE);
ShowWindow(hwndPage, SW_SHOW);
ShowWindow(hdlg, SW_SHOW);
- SendMessage(hdlg, WM_SETICON, ICON_BIG, (LPARAM)GetIcon(IDI_IMPORT));
+ SendMessage(hdlg, WM_SETICON, ICON_SMALL, (LPARAM)GetIcon(IDI_IMPORT));
+ SendMessage(hdlg, WM_SETICON, ICON_BIG, (LPARAM)GetIcon(IDI_IMPORT, 32));
return TRUE;
case WIZM_GOTOPAGE:
|