Use the embedded application icon for the Update Dialog window

This commit is contained in:
Robert Knight 2011-08-24 16:49:47 +01:00
parent 13b280a4fd
commit 9fa311ebaf
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ void registerWindowClass()
wcex.lpfnWndProc = updateDialogWindowProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hIcon = 0;
wcex.hIcon = LoadIcon(GetModuleHandle(0),"IDI_APPICON");
wcex.hCursor = LoadCursor(0,IDC_ARROW);
wcex.hbrBackground = (HBRUSH)background;
wcex.lpszMenuName = (LPCTSTR)0;

View file

@ -1 +1 @@
IDI_ICON1 ICON DISCARDABLE "updater.ico"
IDI_APPICON ICON DISCARDABLE "updater.ico"