winhlp32: Remove superfluous casts.

This commit is contained in:
Michael Stefaniuc 2009-04-06 11:51:26 +02:00 committed by Alexandre Julliard
parent f0de1622d0
commit cd4a7c3146

View file

@ -353,7 +353,7 @@ static LRESULT WINHELP_HandleCommand(HWND hSrcWnd, LPARAM lParam)
return 0;
}
wh = (WINHELP*)cds->lpData;
wh = cds->lpData;
if (wh)
{
@ -1154,7 +1154,7 @@ static LRESULT CALLBACK WINHELP_ShadowWndProc(HWND hWnd, UINT msg, WPARAM wParam
*/
static void cb_KWBTree(void *p, void **next, void *cookie)
{
HWND hListWnd = (HWND)cookie;
HWND hListWnd = cookie;
int count;
WINE_TRACE("Adding '%s' to search list\n", (char *)p);