Module: wine Branch: master Commit: 61a86024ccab9318df97c5c03803e4dc4985e62b URL: http://source.winehq.org/git/wine.git/?a=commit;h=61a86024ccab9318df97c5c038...
Author: Mikołaj Zalewski mikolaj@zalewski.pl Date: Sat May 5 20:20:04 2007 +0200
comctl32: treeview: Make the focus test pass under Windows XP.
---
dlls/comctl32/tests/treeview.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/dlls/comctl32/tests/treeview.c b/dlls/comctl32/tests/treeview.c index 3c7e9f5..6f94fa7 100644 --- a/dlls/comctl32/tests/treeview.c +++ b/dlls/comctl32/tests/treeview.c @@ -90,8 +90,11 @@ static const struct message DoFocusTestSeq[] = { { WM_PARENTNOTIFY, sent|wparam|defwinproc, 0x00000001 }, { WM_KILLFOCUS, sent|defwinproc }, { WM_PAINT, sent|defwinproc }, + { WM_IME_SETCONTEXT, sent|defwinproc|optional }, { WM_COMMAND, sent|wparam|defwinproc, 0x01000000}, { WM_ERASEBKGND, sent|defwinproc }, + { WM_CTLCOLOREDIT, sent|defwinproc|optional }, + { WM_CTLCOLOREDIT, sent|defwinproc|optional }, { 0 } };