comctl32: Remove unused parameter lpcs from TOOLTIPS_Create.

Gerald Pfeifer gerald at pfeifer.com
Sun Sep 19 15:27:16 CDT 2010


---
 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);
-- 
1.7.2.2



More information about the wine-patches mailing list