From f1bf550c63cfce0fcbf630677a6141169f9761af Mon Sep 17 00:00:00 2001 From: Jan de Mooij Date: Fri, 28 Nov 2008 17:38:03 +0100 Subject: [PATCH] shell32/autocomplete: Fix handling of WM_KILLFOCUS messages. --- dlls/shell32/autocomplete.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/autocomplete.c b/dlls/shell32/autocomplete.c index fd1f1dd8162..2057b25d900 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);