Module: wine Branch: master Commit: 1d7d110f1c2d8d3401f966c0913209793c633f91 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1d7d110f1c2d8d3401f966c091...
Author: Nicolas Le Cam niko.lecam@gmail.com Date: Sat Jun 20 12:19:51 2009 +0200
user32/tests: Ignore WM_TIMECHANGE message.
---
dlls/user32/tests/input.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/user32/tests/input.c b/dlls/user32/tests/input.c index d100610..6ef7817 100644 --- a/dlls/user32/tests/input.c +++ b/dlls/user32/tests/input.c @@ -824,7 +824,8 @@ static LRESULT CALLBACK WndProc2(HWND hWnd, UINT Msg, WPARAM wParam, Msg != WM_GETTEXT && Msg != WM_GETICON && Msg != WM_IME_SELECT && - Msg != WM_DEVICECHANGE) + Msg != WM_DEVICECHANGE && + Msg != WM_TIMECHANGE) { ok(sent_messages_cnt < MAXKEYMESSAGES, "Too many messages\n"); if (sent_messages_cnt < MAXKEYMESSAGES)