Module: wine Branch: master Commit: 9724a432e95d7a7d89136b08afae5f1e76d364bf URL: http://source.winehq.org/git/wine.git/?a=commit;h=9724a432e95d7a7d89136b08af...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Sun Sep 19 22:27:16 2010 +0200
comctl32: Remove unused parameter lpcs from TOOLTIPS_Create.
---
dlls/comctl32/tooltips.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/comctl32/tooltips.c b/dlls/comctl32/tooltips.c index 688d3b5..e74c701 100644 --- a/dlls/comctl32/tooltips.c +++ b/dlls/comctl32/tooltips.c @@ -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);