user32/tests: Ignore WM_TIMECHANGE message.

This commit is contained in:
Nicolas Le Cam 2009-06-20 12:19:51 +02:00 committed by Alexandre Julliard
parent 6259aeaacb
commit 1d7d110f1c
1 changed files with 2 additions and 1 deletions

View File

@ -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)