shell32: Define a valid cursor for the control panel window.

This commit is contained in:
Alexandre Julliard 2008-07-23 11:52:12 +02:00
parent 1bca3c05f1
commit d619640f1b
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ static void Control_DoInterface(CPanel* panel, HWND hWnd, HINSTANCE hInst)
wc.cbWndExtra = sizeof(CPlApplet*);
wc.hInstance = hInst;
wc.hIcon = 0;
wc.hCursor = 0;
wc.hCursor = LoadCursorW( 0, (LPWSTR)IDC_ARROW );
wc.hbrBackground = GetStockObject(WHITE_BRUSH);
wc.lpszMenuName = NULL;
wc.lpszClassName = className;