mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-17 00:41:11 +00:00
Use the embedded application icon for the Update Dialog window
This commit is contained in:
parent
13b280a4fd
commit
9fa311ebaf
2 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ void registerWindowClass()
|
||||||
wcex.lpfnWndProc = updateDialogWindowProc;
|
wcex.lpfnWndProc = updateDialogWindowProc;
|
||||||
wcex.cbClsExtra = 0;
|
wcex.cbClsExtra = 0;
|
||||||
wcex.cbWndExtra = 0;
|
wcex.cbWndExtra = 0;
|
||||||
wcex.hIcon = 0;
|
wcex.hIcon = LoadIcon(GetModuleHandle(0),"IDI_APPICON");
|
||||||
wcex.hCursor = LoadCursor(0,IDC_ARROW);
|
wcex.hCursor = LoadCursor(0,IDC_ARROW);
|
||||||
wcex.hbrBackground = (HBRUSH)background;
|
wcex.hbrBackground = (HBRUSH)background;
|
||||||
wcex.lpszMenuName = (LPCTSTR)0;
|
wcex.lpszMenuName = (LPCTSTR)0;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
IDI_ICON1 ICON DISCARDABLE "updater.ico"
|
IDI_APPICON ICON DISCARDABLE "updater.ico"
|
||||||
|
|
Loading…
Reference in a new issue