Commit 1ab851a1 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

comctl32/monthcal: Explicitly set required control size.

parent 5517209a
...@@ -1351,6 +1351,11 @@ static void test_monthcal_monthrange(void) ...@@ -1351,6 +1351,11 @@ static void test_monthcal_monthrange(void)
/* to be locale independent */ /* to be locale independent */
SendMessage(hwnd, MCM_SETFIRSTDAYOFWEEK, 0, (LPARAM)6); SendMessage(hwnd, MCM_SETFIRSTDAYOFWEEK, 0, (LPARAM)6);
res = SendMessage(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&r);
expect(TRUE, res);
/* resize control to display two Calendars */
MoveWindow(hwnd, 0, 0, r.right, (5/2)*r.bottom, FALSE);
flush_sequences(sequences, NUM_MSG_SEQUENCES); flush_sequences(sequences, NUM_MSG_SEQUENCES);
res = SendMessage(hwnd, MCM_GETMONTHRANGE, GMR_VISIBLE, (LPARAM)st_visible); res = SendMessage(hwnd, MCM_GETMONTHRANGE, GMR_VISIBLE, (LPARAM)st_visible);
...@@ -1383,7 +1388,6 @@ static void test_monthcal_monthrange(void) ...@@ -1383,7 +1388,6 @@ static void test_monthcal_monthrange(void)
ok_sequence(sequences, MONTHCAL_SEQ_INDEX, monthcal_monthrange_seq, "monthcal monthrange", FALSE); ok_sequence(sequences, MONTHCAL_SEQ_INDEX, monthcal_monthrange_seq, "monthcal monthrange", FALSE);
/* resize control to display single Calendar */ /* resize control to display single Calendar */
res = SendMessage(hwnd, MCM_GETMINREQRECT, 0, (LPARAM)&r);
MoveWindow(hwnd, 0, 0, r.right, r.bottom, FALSE); MoveWindow(hwnd, 0, 0, r.right, r.bottom, FALSE);
memset(&st, 0, sizeof(st)); memset(&st, 0, sizeof(st));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment