Module: wine Branch: master Commit: e7d91854193b5b5d029c38678f5aa3aa0d28194e URL: http://source.winehq.org/git/wine.git/?a=commit;h=e7d91854193b5b5d029c38678f...
Author: James Hawkins jhawkins@codeweavers.com Date: Mon Sep 8 00:54:40 2008 -0500
comctl32: Trace the first day of the week.
---
dlls/comctl32/tests/monthcal.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/comctl32/tests/monthcal.c b/dlls/comctl32/tests/monthcal.c index 8b12364..70d37c6 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;