Commit 41cf6314 authored by Alexandre Julliard's avatar Alexandre Julliard

Fix redundant uses of MAKEINTRESOURCE.

parent 7f092818
...@@ -1175,7 +1175,7 @@ static void test_data_cache(void) ...@@ -1175,7 +1175,7 @@ static void test_data_cache(void)
fmtetc.cfFormat = CF_METAFILEPICT; fmtetc.cfFormat = CF_METAFILEPICT;
stgmedium.tymed = TYMED_MFPICT; stgmedium.tymed = TYMED_MFPICT;
U(stgmedium).hMetaFilePict = OleMetafilePictFromIconAndLabel( U(stgmedium).hMetaFilePict = OleMetafilePictFromIconAndLabel(
LoadIcon(NULL, MAKEINTRESOURCE(IDI_APPLICATION)), wszPath, wszPath, 0); LoadIcon(NULL, IDI_APPLICATION), wszPath, wszPath, 0);
stgmedium.pUnkForRelease = NULL; stgmedium.pUnkForRelease = NULL;
fmtetc.dwAspect = DVASPECT_CONTENT; fmtetc.dwAspect = DVASPECT_CONTENT;
......
...@@ -83,7 +83,7 @@ START_TEST(systray) ...@@ -83,7 +83,7 @@ START_TEST(systray)
wc.cbWndExtra = 0; wc.cbWndExtra = 0;
wc.hInstance = GetModuleHandleA(NULL); wc.hInstance = GetModuleHandleA(NULL);
wc.hIcon = NULL; wc.hIcon = NULL;
wc.hCursor = LoadCursorA(NULL, MAKEINTRESOURCEA(IDC_IBEAM)); wc.hCursor = LoadCursorA(NULL, IDC_IBEAM);
wc.hbrBackground = GetSysColorBrush(COLOR_WINDOW); wc.hbrBackground = GetSysColorBrush(COLOR_WINDOW);
wc.lpszMenuName = NULL; wc.lpszMenuName = NULL;
wc.lpszClassName = "MyTestWnd"; wc.lpszClassName = "MyTestWnd";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment