From d619640f1bd7035b74607fa99dd75ecf8f3861a0 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 23 Jul 2008 11:52:12 +0200 Subject: [PATCH] shell32: Define a valid cursor for the control panel window. --- dlls/shell32/control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/control.c b/dlls/shell32/control.c index 29e608de842..58516bb0d0d 100644 --- a/dlls/shell32/control.c +++ b/dlls/shell32/control.c @@ -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; -- 2.11.4.GIT