Module: wine Branch: master Commit: 568a4bdd2a033a653a3781f371578b5e567b506f URL: http://source.winehq.org/git/wine.git/?a=commit;h=568a4bdd2a033a653a3781f371...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Sat Dec 27 08:55:50 2008 +0100
comctl32: Simplify COMBOEX_Command.
---
dlls/comctl32/comboex.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/comctl32/comboex.c b/dlls/comctl32/comboex.c index f576eee..0f55f4e 100644 --- a/dlls/comctl32/comboex.c +++ b/dlls/comctl32/comboex.c @@ -1118,7 +1118,7 @@ static LRESULT COMBOEX_Create (HWND hwnd, CREATESTRUCTA const *cs) }
-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, WPARAM wParam, LPARAM lParam)
/* 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)