Commit 7312981c authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

comctl32: Remove the last, unused parameter fromTOOLTIPS_NewToolRectT.

parent 20feb477
...@@ -1430,7 +1430,7 @@ TOOLTIPS_HitTestT (const TOOLTIPS_INFO *infoPtr, LPTTHITTESTINFOW lptthit, ...@@ -1430,7 +1430,7 @@ TOOLTIPS_HitTestT (const TOOLTIPS_INFO *infoPtr, LPTTHITTESTINFOW lptthit,
static LRESULT static LRESULT
TOOLTIPS_NewToolRectT (TOOLTIPS_INFO *infoPtr, const TTTOOLINFOW *ti, BOOL isW) TOOLTIPS_NewToolRectT (TOOLTIPS_INFO *infoPtr, const TTTOOLINFOW *ti)
{ {
INT nTool; INT nTool;
...@@ -2212,8 +2212,8 @@ TOOLTIPS_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) ...@@ -2212,8 +2212,8 @@ TOOLTIPS_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
uMsg == TTM_HITTESTW); uMsg == TTM_HITTESTW);
case TTM_NEWTOOLRECTA: case TTM_NEWTOOLRECTA:
case TTM_NEWTOOLRECTW: case TTM_NEWTOOLRECTW:
return TOOLTIPS_NewToolRectT (infoPtr, (LPTTTOOLINFOW)lParam, return TOOLTIPS_NewToolRectT (infoPtr, (LPTTTOOLINFOW)lParam);
uMsg == TTM_NEWTOOLRECTW);
case TTM_POP: case TTM_POP:
return TOOLTIPS_Pop (infoPtr); return TOOLTIPS_Pop (infoPtr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment