comctl32: Remove a superfluous function pointer cast.

This commit is contained in:
Michael Stefaniuc 2012-11-30 13:48:00 +01:00 committed by Alexandre Julliard
parent abf4250c72
commit 5bade39f55

View file

@ -745,7 +745,7 @@ void PROGRESS_Register (void)
ZeroMemory (&wndClass, sizeof(wndClass));
wndClass.style = CS_GLOBALCLASS | CS_VREDRAW | CS_HREDRAW;
wndClass.lpfnWndProc = (WNDPROC)ProgressWindowProc;
wndClass.lpfnWndProc = ProgressWindowProc;
wndClass.cbClsExtra = 0;
wndClass.cbWndExtra = sizeof (PROGRESS_INFO *);
wndClass.hCursor = LoadCursorW (0, (LPWSTR)IDC_ARROW);