From 9112abc02f065a077aaf7b03a8d181bd74fe4b49 Mon Sep 17 00:00:00 2001 From: Damon Chaplin Date: Wed, 6 Feb 2002 23:30:49 +0000 Subject: convert months from 1-12 to 0-11. Fixes bug #19235. 2002-02-06 Damon Chaplin * cal-util/cal-recur.c (cal_recur_from_icalproperty): convert months from 1-12 to 0-11. Fixes bug #19235. svn path=/trunk/; revision=15584 --- calendar/ChangeLog | 5 +++++ calendar/cal-util/cal-recur.c | 6 ++++++ 2 files changed, 11 insertions(+) (limited to 'calendar') diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 7a7238162c..2fe5e36a1b 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2002-02-06 Damon Chaplin + + * cal-util/cal-recur.c (cal_recur_from_icalproperty): convert months + from 1-12 to 0-11. Fixes bug #19235. + 2002-02-04 JP Rosevear * conduits/todo/todo-conduit.c (e_todo_gui_new): new gui routines diff --git a/calendar/cal-util/cal-recur.c b/calendar/cal-util/cal-recur.c index cfccdaf19f..e050004031 100644 --- a/calendar/cal-util/cal-recur.c +++ b/calendar/cal-util/cal-recur.c @@ -904,6 +904,7 @@ cal_recur_from_icalproperty (icalproperty *prop, gboolean exception, struct icalrecurrencetype ir; CalRecurrence *r; gint max_elements, i; + GList *elem; g_return_val_if_fail (prop != NULL, NULL); @@ -956,6 +957,11 @@ cal_recur_from_icalproperty (icalproperty *prop, gboolean exception, r->bymonth = array_to_list (ir.by_month, sizeof (ir.by_month) / sizeof (ir.by_month[0])); + for (elem = r->bymonth; elem; elem = elem->next) { + /* We need to convert from 1-12 to 0-11, i.e. subtract 1. */ + int month = GPOINTER_TO_INT (elem->data) - 1; + elem->data = GINT_TO_POINTER (month); + } r->byweekno = array_to_list (ir.by_week_no, sizeof (ir.by_week_no) / sizeof (ir.by_week_no[0])); -- cgit v1.2.3