hhctrl.ocx: Remove redundant casts.

oldstable
Jacek Caban 2007-02-28 03:50:14 +01:00 committed by Alexandre Julliard
parent e0b952b436
commit 74fffe66e4
1 changed files with 3 additions and 3 deletions

View File

@ -178,7 +178,7 @@ static void HH_RegisterSizeBarClass(HHInfo *pHHInfo)
wcex.cbSize = sizeof(WNDCLASSEXW);
wcex.style = 0;
wcex.lpfnWndProc = (WNDPROC)SizeBar_WndProc;
wcex.lpfnWndProc = SizeBar_WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hhctrl_hinstance;
@ -285,7 +285,7 @@ static void HH_RegisterChildWndClass(HHInfo *pHHInfo)
wcex.cbSize = sizeof(WNDCLASSEXW);
wcex.style = 0;
wcex.lpfnWndProc = (WNDPROC)Child_WndProc;
wcex.lpfnWndProc = Child_WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hhctrl_hinstance;
@ -658,7 +658,7 @@ static BOOL HH_CreateHelpWindow(HHInfo *info)
wcex.cbSize = sizeof(WNDCLASSEXW);
wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = (WNDPROC)Help_WndProc;
wcex.lpfnWndProc = Help_WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hhctrl_hinstance;