From ec5e295ef287f72a3f13b724d10cb73c4d4ff759 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 11 Jul 2007 14:40:19 +0200 Subject: [PATCH] user32/tests: Flush messages more aggressively in a couple of tests. --- dlls/user32/tests/msg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 19af1e37518..6f9387ffa02 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -5868,7 +5868,7 @@ static void test_accelerators(void) rc.top += (rc.bottom - rc.top)/2; SetCursorPos(rc.left, rc.top); - pump_msg_loop(hwnd, 0); + flush_events(); flush_sequence(); keybd_event(VK_MENU, 0, 0, 0); mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0); @@ -8554,7 +8554,7 @@ static void test_TrackMouseEvent(void) * window and hittest, otherwise TrackMouseEvent calls don't have any * effect. */ - while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE)) DispatchMessage(&msg); + flush_events(); flush_sequence(); track_query(0, NULL, 0);