Commit c685729b authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

comctl32/monthcal: Fix locale dependent test failure.

parent 484ef1dc
......@@ -768,7 +768,7 @@ static void test_monthcal_currdate(void)
static void test_monthcal_firstDay(void)
{
int res, fday, i, prev;
TCHAR b[128];
CHAR b[128];
LCID lcid = LOCALE_USER_DEFAULT;
HWND hwnd;
......@@ -778,7 +778,7 @@ static void test_monthcal_firstDay(void)
/* Setter and Getters for first day of week */
/* check for locale first day */
if(GetLocaleInfo(lcid, LOCALE_IFIRSTDAYOFWEEK, b, 128)){
if(GetLocaleInfoA(lcid, LOCALE_IFIRSTDAYOFWEEK, b, 128)){
fday = atoi(b);
trace("fday: %d\n", fday);
res = SendMessage(hwnd, MCM_GETFIRSTDAYOFWEEK, 0, 0);
......@@ -1267,6 +1267,9 @@ static void test_monthcal_monthrange(void)
res = SendMessage(hwnd, MCM_SETCURSEL, 0, (LPARAM)&st);
expect(1,res);
/* to be locale independent */
SendMessage(hwnd, MCM_SETFIRSTDAYOFWEEK, 0, (LPARAM)6);
flush_sequences(sequences, NUM_MSG_SEQUENCES);
res = SendMessage(hwnd, MCM_GETMONTHRANGE, GMR_VISIBLE, (LPARAM)st_visible);
......
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