diff options
author | George Hazan <george.hazan@gmail.com> | 2012-09-20 17:22:05 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-09-20 17:22:05 +0000 |
commit | e54a5dbe7727ef0de01172b25eff813e45bf6107 (patch) | |
tree | 278d518b5510f9dad6705bc11bd83581cf5b3eb8 /plugins/Import/src/wizard.cpp | |
parent | 062117e053961ddce50bf425bc33b7eef7c033ae (diff) |
fix for the import icon
git-svn-id: http://svn.miranda-ng.org/main/trunk@1609 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Import/src/wizard.cpp')
-rw-r--r-- | plugins/Import/src/wizard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Import/src/wizard.cpp b/plugins/Import/src/wizard.cpp index bd92adeb6b..92e411a145 100644 --- a/plugins/Import/src/wizard.cpp +++ b/plugins/Import/src/wizard.cpp @@ -101,7 +101,7 @@ 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)LoadIcon(hInst,MAKEINTRESOURCE(IDI_IMPORT)));
+ SendMessage(hdlg, WM_SETICON, ICON_BIG, (LPARAM)Skin_GetIconByHandle(hIcoHandle));
return TRUE;
case WIZM_GOTOPAGE:
|