comctl32: Fix a failing test in win98.

This commit is contained in:
James Hawkins 2008-09-02 22:43:00 -05:00 committed by Alexandre Julliard
parent 4ad88d25af
commit a9086abac6
1 changed files with 2 additions and 1 deletions

View File

@ -271,7 +271,8 @@ static void test_WM_LBUTTONDOWN(void)
result = SendMessage(hList, WM_LBUTTONUP, 0, MAKELPARAM(x, y));
ok(!result, "WM_LBUTTONUP was not processed. LastError=%d\n",
GetLastError());
todo_wine ok(GetFocus() == hEdit,
todo_wine ok(GetFocus() == hEdit ||
broken(GetFocus() == hCombo), /* win98 */
"Focus not on ComboBoxEx's Edit Control, instead on %p\n",
GetFocus());