ieframe: IDC_ARROW is already an INTRESOURCE (PVS-Studio).

This commit is contained in:
Michael Stefaniuc 2014-11-27 11:29:40 +01:00 committed by Alexandre Julliard
parent 51d0345ebd
commit 908af25a6f
1 changed files with 1 additions and 1 deletions

View File

@ -707,7 +707,7 @@ void register_iewindow_class(void)
wc.hIcon = LoadIconW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON));
wc.hIconSm = LoadImageW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON), IMAGE_ICON,
GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED);
wc.hCursor = LoadCursorW(0, MAKEINTRESOURCEW(IDC_ARROW));
wc.hCursor = LoadCursorW(0, (LPWSTR)IDC_ARROW);
wc.hbrBackground = 0;
wc.lpszClassName = szIEWinFrame;
wc.lpszMenuName = NULL;