diff options
Diffstat (limited to 'calendar/cal-util/cal-recur.c')
-rw-r--r-- | calendar/cal-util/cal-recur.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/cal-util/cal-recur.c b/calendar/cal-util/cal-recur.c index 057bde1368..5dbb851cec 100644 --- a/calendar/cal-util/cal-recur.c +++ b/calendar/cal-util/cal-recur.c @@ -1044,7 +1044,7 @@ generate_instances_for_chunk (CalComponent *comp, /* Add on specific exception dates. */ for (elem = exdates; elem; elem = elem->next) { - struct icaltimetype *it; + CalComponentDateTime *cdt; time_t t; /* FIXME we should only be dealing with dates, not times too. @@ -1052,8 +1052,8 @@ generate_instances_for_chunk (CalComponent *comp, No, I think it is supposed to be dates & times - Damon. I'm not sure what the semantics of just a date would be, since the event could recur several times each day. */ - it = elem->data; - t = icaltime_as_timet (*it); + cdt = elem->data; + t = icaltime_as_timet (*cdt->value); cal_object_time_from_time (&cotime, t); g_array_append_val (ex_occs, cotime); |