Jan de Mooij : shell32/autocomplete: Fix handling of WM_KILLFOCUS messages.
Module: wine Branch: master Commit: f1bf550c63cfce0fcbf630677a6141169f9761af URL: http://source.winehq.org/git/wine.git/?a=commit;h=f1bf550c63cfce0fcbf630677a... Author: Jan de Mooij <jandemooij(a)gmail.com> Date: Fri Nov 28 17:38:03 2008 +0100 shell32/autocomplete: Fix handling of WM_KILLFOCUS messages. --- dlls/shell32/autocomplete.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/shell32/autocomplete.c b/dlls/shell32/autocomplete.c index fd1f1dd..2057b25 100644 --- a/dlls/shell32/autocomplete.c +++ b/dlls/shell32/autocomplete.c @@ -481,7 +481,7 @@ static LRESULT APIENTRY ACEditSubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam, { ShowWindow(This->hwndListBox, SW_HIDE); } - break; + return CallWindowProcW(This->wpOrigEditProc, hwnd, uMsg, wParam, lParam); case WM_KEYUP: GetWindowTextW( hwnd, (LPWSTR)hwndText, 255);
participants (1)
-
Alexandre Julliard