Jan de Mooij : shell32/autocomplete: Fix handling of WM_KILLFOCUS messages.

Alexandre Julliard julliard at winehq.org
Wed Dec 3 05:56:22 CST 2008


Module: wine
Branch: master
Commit: f1bf550c63cfce0fcbf630677a6141169f9761af
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f1bf550c63cfce0fcbf630677a6141169f9761af

Author: Jan de Mooij <jandemooij at 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);




More information about the wine-cvs mailing list