aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/itip-formatter/itip-formatter.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2005-01-04 01:31:42 +0800
committerJP Rosevear <jpr@src.gnome.org>2005-01-04 01:31:42 +0800
commit625fd5b098cb6f8a8f68058977ac01bf18ca35b7 (patch)
tree0cf7e626d5c27975a67107ec8b44d41c9bf045c4 /plugins/itip-formatter/itip-formatter.c
parent1d499afd8063d5f9ae951aec14b6bba9054bd1db (diff)
downloadgsoc2013-evolution-625fd5b098cb6f8a8f68058977ac01bf18ca35b7.tar
gsoc2013-evolution-625fd5b098cb6f8a8f68058977ac01bf18ca35b7.tar.gz
gsoc2013-evolution-625fd5b098cb6f8a8f68058977ac01bf18ca35b7.tar.bz2
gsoc2013-evolution-625fd5b098cb6f8a8f68058977ac01bf18ca35b7.tar.lz
gsoc2013-evolution-625fd5b098cb6f8a8f68058977ac01bf18ca35b7.tar.xz
gsoc2013-evolution-625fd5b098cb6f8a8f68058977ac01bf18ca35b7.tar.zst
gsoc2013-evolution-625fd5b098cb6f8a8f68058977ac01bf18ca35b7.zip
move the adjust item work here when we actually have the calendar
2005-01-03 JP Rosevear <jpr@novell.com> * itip-formatter.c (find_cal_opened_cb): move the adjust item work here when we actually have the calendar (pitip_free): implement a free function svn path=/trunk/; revision=28217
Diffstat (limited to 'plugins/itip-formatter/itip-formatter.c')
-rw-r--r--plugins/itip-formatter/itip-formatter.c44
1 files changed, 39 insertions, 5 deletions
diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c
index 7944d7be0a..6fe199f786 100644
--- a/plugins/itip-formatter/itip-formatter.c
+++ b/plugins/itip-formatter/itip-formatter.c
@@ -358,6 +358,12 @@ find_cal_opened_cb (ECal *ecal, ECalendarStatus status, gpointer data)
pitip->current_ecal = ecal;
+ /* Provide extra info, since its not in the component */
+ /* FIXME Check sequence number of meeting? */
+ /* FIXME Do we need to adjust elsewhere for the delegated calendar item? */
+ if (pitip->method == ICAL_METHOD_REPLY || pitip->method == ICAL_METHOD_REFRESH)
+ adjust_item (pitip, pitip->comp);
+
/* We clear everything because we don't really care
* about any other info/warnings now we found an
* existing versions */
@@ -1054,10 +1060,6 @@ format_itip_object (EMFormatHTML *efh, GtkHTMLEmbedded *eb, EMFormatHTMLPObject
break;
case ICAL_METHOD_REPLY:
case ICAL_METHOD_REFRESH:
- /* Provide extra info, since its not in the component */
- /* FIXME Check sequence number of meeting? */
- adjust_item (pitip, pitip->comp);
-
case ICAL_METHOD_COUNTER:
case ICAL_METHOD_DECLINECOUNTER:
/* An attendee sent this */
@@ -1165,7 +1167,39 @@ pitip_free (EMFormatHTMLPObject *pobject)
{
FormatItipPObject *pitip = (FormatItipPObject *) pobject;
-
+ g_free (pitip->vcalendar);
+ pitip->vcalendar = NULL;
+
+ if (pitip->comp) {
+ g_object_unref (pitip->comp);
+ pitip->comp = NULL;
+ }
+
+ if (pitip->top_level) {
+ icalcomponent_free (pitip->top_level);
+ pitip->top_level = NULL;
+ }
+
+ if (pitip->main_comp) {
+ icalcomponent_free (pitip->main_comp);
+ pitip->main_comp = NULL;
+ }
+ pitip->ical_comp = NULL;
+
+ pitip->current = 0;
+ pitip->total = 0;
+
+ g_free (pitip->calendar_uid);
+ pitip->calendar_uid = NULL;
+
+ g_free (pitip->from_address);
+ pitip->from_address = NULL;
+ g_free (pitip->delegator_address);
+ pitip->delegator_address = NULL;
+ g_free (pitip->delegator_name);
+ pitip->delegator_name = NULL;
+ g_free (pitip->my_address);
+ pitip->my_address = NULL;
}
void