mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[CPL][DESK] Don't use magic number (IDI_SHELL_NO)
This commit is contained in:
parent
c069e5c122
commit
e2c408f717
1 changed files with 3 additions and 1 deletions
|
@ -320,9 +320,11 @@ AddListViewItems(HWND hwndDlg, PBACKGROUND_DATA pData)
|
|||
himl = ImageList_Create(cx, cy, ILC_COLOR32 | ILC_MASK, 0, 0);
|
||||
|
||||
/* Load (None) icon */
|
||||
#define IDI_SHELL_NO 200
|
||||
hShell32 = LoadLibraryEx(L"shell32", NULL, LOAD_LIBRARY_AS_DATAFILE);
|
||||
hIcon = (HICON)LoadImageW(hShell32, MAKEINTRESOURCEW(200), IMAGE_ICON, cx, cy, 0);
|
||||
hIcon = (HICON)LoadImageW(hShell32, MAKEINTRESOURCEW(IDI_SHELL_NO), IMAGE_ICON, cx, cy, 0);
|
||||
FreeLibrary(hShell32);
|
||||
#undef IDI_SHELL_NO
|
||||
|
||||
ListView_SetImageList(hwndBackgroundList, himl, LVSIL_SMALL);
|
||||
|
||||
|
|
Loading…
Reference in a new issue