diff options
author | Miguel de Icaza <miguel@nuclecu.unam.mx> | 1998-05-15 07:12:10 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-05-15 07:12:10 +0800 |
commit | 3799134926a1db309a2b46706d8a33581999f778 (patch) | |
tree | 46d2561103752aac54d3dd0430a3b0d72687a3e4 /calendar/pcs/calobj.h | |
parent | dc9b92ba1949fc7004aec9cbc369e173e03af0a8 (diff) | |
download | gsoc2013-evolution-3799134926a1db309a2b46706d8a33581999f778.tar gsoc2013-evolution-3799134926a1db309a2b46706d8a33581999f778.tar.gz gsoc2013-evolution-3799134926a1db309a2b46706d8a33581999f778.tar.bz2 gsoc2013-evolution-3799134926a1db309a2b46706d8a33581999f778.tar.lz gsoc2013-evolution-3799134926a1db309a2b46706d8a33581999f778.tar.xz gsoc2013-evolution-3799134926a1db309a2b46706d8a33581999f778.tar.zst gsoc2013-evolution-3799134926a1db309a2b46706d8a33581999f778.zip |
Do not add the spurious padding.
1998-05-14 Miguel de Icaza <miguel@nuclecu.unam.mx>
* timeutil.c (isodate_from_time_t): Do not add the spurious
padding.
* calobj.c (store_date_list): Bug fix: I was using the wrong
pointer when saving the exception date list.
(set_date_list): Bug fix: load correctly the complete exception
date list.
(set_date_list): Use ',' for the exception date separator as the
versit people can not get their standard right.
* gncal-full-day.c (unrecur_appointment): Support for making an
existing recurrent event `movable' for a day.
* calobj.c (ical_object_add_exdate): New routine, used to add
exception dates.
(ical_object_duplicate): New routine: used to do the magic
recur->no-recur event.
svn path=/trunk/; revision=214
Diffstat (limited to 'calendar/pcs/calobj.h')
-rw-r--r-- | calendar/pcs/calobj.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/pcs/calobj.h b/calendar/pcs/calobj.h index 12b7578f10..d18acd4f8a 100644 --- a/calendar/pcs/calobj.h +++ b/calendar/pcs/calobj.h @@ -182,8 +182,10 @@ iCalObject *ical_object_new (void); void ical_object_destroy (iCalObject *ico); iCalObject *ical_object_create_from_vobject (VObject *obj, const char *object_name); VObject *ical_object_to_vobject (iCalObject *ical); +iCalObject *ical_object_duplicate (iCalObject *o); void ical_foreach (GList *events, calendarfn fn, void *closure); void ical_object_generate_events (iCalObject *ico, time_t start, time_t end, calendarfn cb, void *closure); +void ical_object_add_exdate (iCalObject *o, time_t t); /* Computes the enddate field of the recurrence based on the duration */ void ical_object_compute_end (iCalObject *ico); |