mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
use application specific icon for small AND large icon instead of predefined one (otherwise alt-tab shows default icon)
svn path=/trunk/; revision=51902
This commit is contained in:
parent
9074f26b85
commit
255a10c304
1 changed files with 2 additions and 2 deletions
|
@ -168,8 +168,8 @@ _tWinMain (HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPTSTR lpszArgument
|
|||
wincl.lpfnWndProc = WindowProcedure;
|
||||
wincl.style = CS_DBLCLKS;
|
||||
wincl.cbSize = sizeof(WNDCLASSEX);
|
||||
wincl.hIcon = LoadIcon(NULL, IDI_APPLICATION);
|
||||
wincl.hIconSm = LoadIcon(hThisInstance, MAKEINTRESOURCE(500));
|
||||
wincl.hIcon = LoadIcon(hThisInstance, MAKEINTRESOURCE(IDI_APPICON));
|
||||
wincl.hIconSm = LoadIcon(hThisInstance, MAKEINTRESOURCE(IDI_APPICON));
|
||||
wincl.hCursor = LoadCursor(NULL, IDC_ARROW);
|
||||
wincl.lpszMenuName = NULL;
|
||||
wincl.cbClsExtra = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue