diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-19 05:09:53 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-19 05:09:53 +0000 |
commit | 00a1cef967087b7c85b9ef39b63ba0662fa13080 (patch) | |
tree | bf70408a9ef71036c7b693c7623191ead6be0f4d /updater/progress_dialog.cpp | |
parent | fd215b11baee74952e38d31cc5fce3cc27b1c9fb (diff) |
Fixed VC2008 project and warnings
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@508 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'updater/progress_dialog.cpp')
-rw-r--r-- | updater/progress_dialog.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/updater/progress_dialog.cpp b/updater/progress_dialog.cpp index a66a6e6..cbe7380 100644 --- a/updater/progress_dialog.cpp +++ b/updater/progress_dialog.cpp @@ -16,9 +16,6 @@ INT_PTR CALLBACK DlgProcProgress(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM l case WM_INITDIALOG:
TranslateDialogDefault( hwndDlg );
SetWindowLongPtr(hwndDlg, GWLP_USERDATA, 0);
- // these change icons for all system dialogs!
- //SetClassLong(hwndDlg, GCL_HICON, (LONG)hIconCheck);
- //SetClassLong(hwndDlg, GCL_HICONSM, (LONG)hIconCheck);
SendMessage(hwndDlg, WM_SETICON, ICON_SMALL, (LPARAM)LoadIconEx(I_CHKUPD));
SendMessage(hwndDlg, WM_SETICON, ICON_BIG, (LPARAM)LoadIconEx(I_CHKUPD, true));
|