From 32030cf58f4caaa592f978a6c5226c53df9fd8ac Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Thu, 19 Jul 2001 23:13:18 +0000 Subject: free various data related settings (destroy): use cleanup and unref the 2001-07-19 JP Rosevear * gui/e-itip-control.c (clean_up): free various data related settings (destroy): use cleanup and unref the clients (e_itip_control_set_data): clean up before setting the data and store the timezones in a top level component (update_item): use cal_client_update_objects and our top level (including the timezones) svn path=/trunk/; revision=11246 --- calendar/ChangeLog | 11 +++++++- calendar/gui/e-itip-control.c | 64 ++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 70 insertions(+), 5 deletions(-) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 82646ef9a2..ada11e06c0 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,13 @@ +2001-07-19 JP Rosevear + + * gui/e-itip-control.c (clean_up): free various data related + settings + (destroy): use cleanup and unref the clients + (e_itip_control_set_data): clean up before setting the data and + store the timezones in a top level component + (update_item): use cal_client_update_objects and our top level + (including the timezones) + 2001-07-19 Damon Chaplin * gui/dialogs/comp-editor.c (pixmaps): @@ -79,7 +89,6 @@ * gui/dialogs/comp-editor-util.c (comp_editor_dates): * gui/print.c (print_date_label): only free icaltimetype if not NULL. ->>>>>>> 1.974 2001-07-12 Taylor Hayward * gui/goto-dialog.glade: diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 7872536f11..bb060dc5c9 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -59,6 +59,7 @@ struct _EItipControlPrivate { CalComponent *comp; icalcomponent *main_comp; icalcomponent *ical_comp; + icalcomponent *top_level; icalcompiter iter; icalproperty_method method; @@ -337,6 +338,38 @@ init (EItipControl *itip) g_warning ("Unable to start calendar client"); } +static void +clean_up (EItipControl *itip) +{ + EItipControlPrivate *priv; + + priv = itip->priv; + + g_free (priv->vcalendar); + priv->vcalendar = NULL; + + gtk_object_unref (GTK_OBJECT (priv->comp)); + priv->comp = NULL; + + icalcomponent_free (priv->top_level); + priv->top_level = NULL; + icalcomponent_free (priv->main_comp); + priv->main_comp = NULL; + priv->ical_comp = NULL; + + priv->map = NULL; + + priv->current = 0; + priv->total = 0; + + itip_addresses_free (priv->addresses); + priv->addresses = NULL; + + priv->my_address = NULL; + g_free (priv->from_address); + priv->from_address = NULL; +} + static void destroy (GtkObject *obj) { @@ -345,7 +378,10 @@ destroy (GtkObject *obj) priv = itip->priv; - itip_addresses_free (priv->addresses); + clean_up (itip); + + gtk_object_unref (GTK_OBJECT (priv->event_client)); + gtk_object_unref (GTK_OBJECT (priv->task_client)); g_free (priv); } @@ -817,11 +853,16 @@ e_itip_control_set_data (EItipControl *itip, const gchar *text) EItipControlPrivate *priv; icalproperty *prop; icalcomponent_kind kind = ICAL_NO_COMPONENT; - + icalcomponent *tz_comp; + icalcompiter tz_iter; + priv = itip->priv; + + clean_up (itip); priv->vcalendar = g_strdup (text); - + priv->top_level = cal_util_new_top_level (); + priv->main_comp = icalparser_parse_string (priv->vcalendar); if (priv->main_comp == NULL) { set_message (itip, _("The information contained in this attachment was not valid"), TRUE); @@ -835,6 +876,16 @@ e_itip_control_set_data (EItipControl *itip, const gchar *text) prop = icalcomponent_get_first_property (priv->main_comp, ICAL_METHOD_PROPERTY); priv->method = icalproperty_get_method (prop); + tz_iter = icalcomponent_begin_component (priv->main_comp, ICAL_VTIMEZONE_COMPONENT); + while ((tz_comp = icalcompiter_deref (&tz_iter)) != NULL) { + icalcomponent *clone; + + clone = icalcomponent_new_clone (tz_comp); + icalcomponent_add_component (priv->top_level, clone); + + icalcompiter_next (&tz_iter); + } + priv->iter = icalcomponent_begin_component (priv->main_comp, ICAL_ANY_COMPONENT); priv->ical_comp = icalcompiter_deref (&priv->iter); kind = icalcomponent_isa (priv->ical_comp); @@ -906,6 +957,7 @@ static void update_item (EItipControl *itip) { EItipControlPrivate *priv; + icalcomponent *clone; CalClient *client; CalComponentVType type; @@ -916,13 +968,17 @@ update_item (EItipControl *itip) client = priv->task_client; else client = priv->event_client; + + clone = icalcomponent_new_clone (priv->ical_comp); + icalcomponent_add_component (priv->top_level, clone); - if (!cal_client_update_object (client, priv->comp)) { + if (!cal_client_update_objects (client, priv->top_level)) { GtkWidget *dialog; dialog = gnome_warning_dialog(_("I couldn't update your calendar file!\n")); gnome_dialog_run (GNOME_DIALOG(dialog)); } + icalcomponent_remove_component (priv->top_level, clone); } static void -- cgit v1.2.3