diff options
author | Miguel de Icaza <miguel@nuclecu.unam.mx> | 1999-02-24 08:40:15 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1999-02-24 08:40:15 +0800 |
commit | 89ef5539d9a04cf249987a9b43cd31b6bcd8797d (patch) | |
tree | ce177309a708892d3c84fa807d1ee5779c2b0f88 /calendar/gncal-full-day.c | |
parent | 2df03af7a2ab4362e8dd32f3221777d09a90e42a (diff) | |
download | gsoc2013-evolution-89ef5539d9a04cf249987a9b43cd31b6bcd8797d.tar gsoc2013-evolution-89ef5539d9a04cf249987a9b43cd31b6bcd8797d.tar.gz gsoc2013-evolution-89ef5539d9a04cf249987a9b43cd31b6bcd8797d.tar.bz2 gsoc2013-evolution-89ef5539d9a04cf249987a9b43cd31b6bcd8797d.tar.lz gsoc2013-evolution-89ef5539d9a04cf249987a9b43cd31b6bcd8797d.tar.xz gsoc2013-evolution-89ef5539d9a04cf249987a9b43cd31b6bcd8797d.tar.zst gsoc2013-evolution-89ef5539d9a04cf249987a9b43cd31b6bcd8797d.zip |
Save the owner/organizer of the event. (ical_object_create_from_vobject):
1999-02-23 Miguel de Icaza <miguel@nuclecu.unam.mx>
* calobj.c (ical_object_to_vobject): Save the owner/organizer of
the event.
(ical_object_create_from_vobject): Load the owner/organizer of the event.
* gncal-full-day.c (delete_occurance): Assign child to data (fixes
crash on "delete this occurrance").
svn path=/trunk/; revision=689
Diffstat (limited to 'calendar/gncal-full-day.c')
-rw-r--r-- | calendar/gncal-full-day.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gncal-full-day.c b/calendar/gncal-full-day.c index f813f1598c..cef08c7fa0 100644 --- a/calendar/gncal-full-day.c +++ b/calendar/gncal-full-day.c @@ -428,7 +428,7 @@ edit_appointment (GtkWidget *widget, gpointer data) static void delete_occurance (GtkWidget *widget, gpointer data) { - Child *child; + Child *child = data; iCalObject *ical; time_t *t; GnomeCalendar *gcal = GNCAL_FULL_DAY (child->widget->parent)->calendar; |