From 4b926012c0cae01569d71d178dc651d9e4b2c8e8 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Fri, 17 Apr 1998 23:22:50 +0000 Subject: The event dialog is beautified, recurrences are saner. 1998-04-17 Federico Mena Quintero * eventedit.c (ee_init_recurrence_page): New function that creates the recurrence page in the toplevel notebook. (ee_store_recur_values_to_ical): Now we can also store the recurrences. svn path=/trunk/; revision=151 --- calendar/gncal-full-day.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'calendar/gncal-full-day.c') diff --git a/calendar/gncal-full-day.c b/calendar/gncal-full-day.c index c3151f6dcf..7a20b3789d 100644 --- a/calendar/gncal-full-day.c +++ b/calendar/gncal-full-day.c @@ -340,6 +340,7 @@ static void new_appointment (GtkWidget *widget, gpointer data) { GncalFullDay *fullday; + GtkWidget *ee; fullday = GNCAL_FULL_DAY (data); @@ -349,17 +350,20 @@ new_appointment (GtkWidget *widget, gpointer data) * at which the button was clicked on when popping up the menu. */ - event_editor_new (fullday->calendar, NULL); + ee = event_editor_new (fullday->calendar, NULL); + gtk_widget_show (ee); } static void edit_appointment (GtkWidget *widget, gpointer data) { Child *child; + GtkWidget *ee; child = data; - event_editor_new (GNCAL_FULL_DAY (child->widget->parent)->calendar, child->ico); + ee = event_editor_new (GNCAL_FULL_DAY (child->widget->parent)->calendar, child->ico); + gtk_widget_show (ee); } static void -- cgit v1.2.3