Module: wine Branch: master Commit: d619640f1bd7035b74607fa99dd75ecf8f3861a0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d619640f1bd7035b74607fa99d...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Jul 23 11:52:12 2008 +0200
shell32: Define a valid cursor for the control panel window.
---
dlls/shell32/control.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/shell32/control.c b/dlls/shell32/control.c index 29e608d..58516bb 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;