From e7d91854193b5b5d029c38678f5aa3aa0d28194e Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Mon, 8 Sep 2008 00:54:40 -0500 Subject: [PATCH] comctl32: Trace the first day of the week. --- dlls/comctl32/tests/monthcal.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/comctl32/tests/monthcal.c b/dlls/comctl32/tests/monthcal.c index 8b1236463e9..70d37c6afb8 100644 --- a/dlls/comctl32/tests/monthcal.c +++ b/dlls/comctl32/tests/monthcal.c @@ -654,6 +654,7 @@ static void test_monthcal_firstDay(HWND hwnd) /* check for locale first day */ if(GetLocaleInfo(lcid, LOCALE_IFIRSTDAYOFWEEK, b, 128)){ fday = atoi(b); + trace("fday: %d\n", fday); res = SendMessage(hwnd, MCM_GETFIRSTDAYOFWEEK, 0, 0); expect(fday, res); prev = fday;