aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/gncal-full-day.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@nuclecu.unam.mx>1998-04-18 10:03:07 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-04-18 10:03:07 +0800
commit36a42fc60313ee2c15de8b2466bd208a0feff6ae (patch)
tree2b2f2d51b9613fa0b46473673ed458775e20951d /calendar/gui/gncal-full-day.c
parentd55901c052e7431d907f1db4aa243b79948c3f46 (diff)
downloadgsoc2013-evolution-36a42fc60313ee2c15de8b2466bd208a0feff6ae.tar
gsoc2013-evolution-36a42fc60313ee2c15de8b2466bd208a0feff6ae.tar.gz
gsoc2013-evolution-36a42fc60313ee2c15de8b2466bd208a0feff6ae.tar.bz2
gsoc2013-evolution-36a42fc60313ee2c15de8b2466bd208a0feff6ae.tar.lz
gsoc2013-evolution-36a42fc60313ee2c15de8b2466bd208a0feff6ae.tar.xz
gsoc2013-evolution-36a42fc60313ee2c15de8b2466bd208a0feff6ae.tar.zst
gsoc2013-evolution-36a42fc60313ee2c15de8b2466bd208a0feff6ae.zip
Added mandatory status property. (ical_object_to_vobject): Only store
1998-04-17 Federico Mena Quintero <federico@nuclecu.unam.mx> * calobj.c (ical_new): Added mandatory status property. (ical_object_to_vobject): Only store "related" list if it exists. * main.c (save_calendar_cmd): Implemented calendar saving. (open_calendar_cmd): Implemented calendar loading. (new_calendar_cmd): Implemented calendar creation. (new_calendar): Don't load our test calendar by default. * gncal-full-day.c (delete_appointment): Delete appointment implemented. svn path=/trunk/; revision=153
Diffstat (limited to 'calendar/gui/gncal-full-day.c')
-rw-r--r--calendar/gui/gncal-full-day.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gui/gncal-full-day.c b/calendar/gui/gncal-full-day.c
index 7a20b3789d..1af9daa65f 100644
--- a/calendar/gui/gncal-full-day.c
+++ b/calendar/gui/gncal-full-day.c
@@ -370,12 +370,13 @@ static void
delete_appointment (GtkWidget *widget, gpointer data)
{
Child *child;
+ GncalFullDay *fullday;
child = data;
- /* FIXME */
+ fullday = GNCAL_FULL_DAY (child->widget->parent);
- printf ("Yay! delete_appointment() not yet implemented\n");
+ gnome_calendar_remove_object (fullday->calendar, child->ico);
}
static void