comctl32: Remove unused parameter lpcs from TOOLTIPS_Create.

This commit is contained in:
Gerald Pfeifer 2010-09-19 22:27:16 +02:00 committed by Alexandre Julliard
parent 5805d8b4f6
commit 9724a432e9
1 changed files with 2 additions and 2 deletions

View File

@ -1848,7 +1848,7 @@ TOOLTIPS_WindowFromPoint (HWND hwnd, WPARAM wParam, LPARAM lParam)
static LRESULT
TOOLTIPS_Create (HWND hwnd, const CREATESTRUCTW *lpcs)
TOOLTIPS_Create (HWND hwnd)
{
TOOLTIPS_INFO *infoPtr;
@ -2272,7 +2272,7 @@ TOOLTIPS_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
case WM_CREATE:
return TOOLTIPS_Create (hwnd, (LPCREATESTRUCTW)lParam);
return TOOLTIPS_Create (hwnd);
case WM_DESTROY:
return TOOLTIPS_Destroy (infoPtr);