comctl32/tests: Fix the monthcal window creation message sequence.

oldstable
Alexandre Julliard 2009-03-05 23:00:49 +01:00
parent f493122879
commit ff28ec0ddd
1 changed files with 3 additions and 2 deletions

View File

@ -53,7 +53,8 @@ static const struct message create_parent_window_seq[] = {
{ WM_SHOWWINDOW, sent|wparam, 1 },
{ WM_WINDOWPOSCHANGING, sent|wparam, 0 },
{ WM_QUERYNEWPALETTE, sent|optional },
{ WM_WINDOWPOSCHANGING, sent|wparam, 0 },
{ WM_WINDOWPOSCHANGING, sent|wparam|optional, 0 },
{ WM_WINDOWPOSCHANGED, sent|optional },
{ WM_ACTIVATEAPP, sent|wparam, 1 },
{ WM_NCACTIVATE, sent|wparam, 1 },
{ WM_ACTIVATE, sent|wparam, 1 },
@ -447,7 +448,7 @@ static HWND create_parent_window(void)
assert(hwnd);
/* check for message sequences */
ok_sequence(sequences, PARENT_SEQ_INDEX, create_parent_window_seq, "create parent window", TRUE);
ok_sequence(sequences, PARENT_SEQ_INDEX, create_parent_window_seq, "create parent window", FALSE);
return hwnd;
}