wintab32: Remove unneeded cast.

This commit is contained in:
Andrew Talbot 2008-02-06 21:12:13 +00:00 committed by Alexandre Julliard
parent 5c517a20b7
commit 78ea65bb3a
1 changed files with 1 additions and 2 deletions

View File

@ -143,8 +143,7 @@ static LRESULT WINAPI TABLET_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
{ {
prox = MAKELPARAM( wParam, 1 ); prox = MAKELPARAM( wParam, 1 );
TABLET_PostTabletMessage(handler, WT_PROXIMITY, TABLET_PostTabletMessage(handler, WT_PROXIMITY,
(WPARAM)handler->handle, (LPARAM)prox, (WPARAM)handler->handle, prox, TRUE);
TRUE);
} }
break; break;
} }