From 7d8535da7bd004bf6aa16ea0a52d2a4052614860 Mon Sep 17 00:00:00 2001 From: karl-qdh Date: Tue, 8 Mar 2011 15:44:28 +0000 Subject: Fixed calendar browsing with month-changed and removed bogus off by one error --- src/indicator-datetime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/indicator-datetime.c') diff --git a/src/indicator-datetime.c b/src/indicator-datetime.c index 86eeed6..07be8de 100644 --- a/src/indicator-datetime.c +++ b/src/indicator-datetime.c @@ -1197,7 +1197,7 @@ month_changed_cb (IdoCalendarMenuItem *ido, ido_calendar_menu_item_get_date(ido, &y, &m, &d); struct tm date = {0}; date.tm_mday = d; - date.tm_mon = m + 1; // Month is always off by one + date.tm_mon = m; date.tm_year = y - 1900; guint selecteddate = (guint)mktime(&date); g_debug("Got month changed signal: %s", asctime(&date)); -- cgit v1.2.3