=?UTF-8?Q?Gabriel=20Iv=C4=83ncescu=20?=: shell32/autocomplete: Handle WM_SETTEXT for autocompletion.

Alexandre Julliard julliard at winehq.org
Mon Sep 24 15:48:23 CDT 2018


Module: wine
Branch: master
Commit: 03fe2468976cb659ca03d817e21ea1f089e2994f
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=03fe2468976cb659ca03d817e21ea1f089e2994f

Author: Gabriel Ivăncescu <gabrielopcode at gmail.com>
Date:   Sat Sep 22 17:53:44 2018 +0300

shell32/autocomplete: Handle WM_SETTEXT for autocompletion.

Signed-off-by: Gabriel Ivăncescu <gabrielopcode at gmail.com>
Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/shell32/autocomplete.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/shell32/autocomplete.c b/dlls/shell32/autocomplete.c
index 2f63d88..1751401 100644
--- a/dlls/shell32/autocomplete.c
+++ b/dlls/shell32/autocomplete.c
@@ -370,6 +370,7 @@ static LRESULT APIENTRY ACEditSubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam,
             autocomplete_text(This, hwnd, (This->options & ACO_AUTOAPPEND) && wParam >= ' '
                                           ? autoappend_flag_yes : autoappend_flag_no);
             return ret;
+        case WM_SETTEXT:
         case WM_CUT:
         case WM_CLEAR:
         case WM_UNDO:




More information about the wine-cvs mailing list