[PATCH 5/5] Fix edit box text limit

Nikolay Sivov nsivov at codeweavers.com
Sat Mar 26 16:32:27 CDT 2011


---
 dlls/comctl32/listview.c       |    1 +
 dlls/comctl32/tests/listview.c |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c
index 754d817..1f64cbe 100644
--- a/dlls/comctl32/listview.c
+++ b/dlls/comctl32/listview.c
@@ -5879,6 +5879,7 @@ static HWND CreateEditLabelT(LISTVIEW_INFO *infoPtr, LPCWSTR text, BOOL isW)
                SetWindowLongPtrA(hedit, GWLP_WNDPROC, (DWORD_PTR)EditLblWndProcA) );
 
     SendMessageW(hedit, WM_SETFONT, (WPARAM)infoPtr->hFont, FALSE);
+    SendMessageW(hedit, EM_SETLIMITTEXT, DISP_TEXT_SIZE-1, 0);
 
     return hedit;
 }
diff --git a/dlls/comctl32/tests/listview.c b/dlls/comctl32/tests/listview.c
index a7de6e7..c2bf70b 100644
--- a/dlls/comctl32/tests/listview.c
+++ b/dlls/comctl32/tests/listview.c
@@ -350,7 +350,7 @@ static LRESULT WINAPI parent_wnd_proc(HWND hwnd, UINT message, WPARAM wParam, LP
               if (edit)
               {
                   INT len = SendMessageA(edit, EM_GETLIMITTEXT, 0, 0);
-                  todo_wine ok(len == 259 || broken(len == 260) /* includes NULL in NT4 */,
+                  ok(len == 259 || broken(len == 260) /* includes NULL in NT4 */,
                       "text limit %d, expected 259\n", len);
               }
 
-- 
1.5.6.5


--------------020702060706080709070800--



More information about the wine-patches mailing list