Simplify dlls/comctl32/comboex.c

Gerald Pfeifer gerald at pfeifer.com
Sat Dec 27 01:55:50 CST 2008


ChangeLog:
Simplify COMBOEX_Command.

Index: dlls/comctl32/comboex.c
===================================================================
RCS file: /home/wine/wine/dlls/comctl32/comboex.c,v
retrieving revision 1.111
diff -u -3 -p -r1.111 comboex.c
--- dlls/comctl32/comboex.c	4 Nov 2008 13:30:13 -0000	1.111
+++ dlls/comctl32/comboex.c	27 Dec 2008 07:55:16 -0000
@@ -1118,7 +1118,7 @@ static LRESULT COMBOEX_Create (HWND hwnd
 }
 
 
-static LRESULT COMBOEX_Command (COMBOEX_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
+static LRESULT COMBOEX_Command (COMBOEX_INFO *infoPtr, WPARAM wParam)
 {
     LRESULT lret;
     INT command = HIWORD(wParam);
@@ -2273,7 +2273,7 @@ COMBOEX_WindowProc (HWND hwnd, UINT uMsg
 
 /*   Window messages passed to parent */
 	case WM_COMMAND:
-	    return COMBOEX_Command (infoPtr, wParam, lParam);
+	    return COMBOEX_Command (infoPtr, wParam);
 
 	case WM_NOTIFY:
 	    if (infoPtr->NtfUnicode)



More information about the wine-patches mailing list