Rob Shearman : comctl32: Forward the WM_GETTEXTLENGTH message from ComboEx controls to its edit control .
Module: wine Branch: master Commit: 0d44f6f0700bef8a47769bd6d16ef55d6abf2671 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0d44f6f0700bef8a47769bd6d1... Author: Rob Shearman <rob(a)codeweavers.com> Date: Mon Nov 19 15:30:18 2007 +0000 comctl32: Forward the WM_GETTEXTLENGTH message from ComboEx controls to its edit control. --- dlls/comctl32/comboex.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/comctl32/comboex.c b/dlls/comctl32/comboex.c index 006b8a6..55e5308 100644 --- a/dlls/comctl32/comboex.c +++ b/dlls/comctl32/comboex.c @@ -2236,6 +2236,7 @@ COMBOEX_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) case WM_SETTEXT: case WM_GETTEXT: + case WM_GETTEXTLENGTH: return SendMessageW(infoPtr->hwndEdit, uMsg, wParam, lParam); case CB_GETLBTEXT:
participants (1)
-
Alexandre Julliard