Commit d619640f authored by Alexandre Julliard's avatar Alexandre Julliard

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

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