aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/event-page.c
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2006-04-22 13:43:52 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-04-22 13:43:52 +0800
commitc2d58cc231a24ef344af1df6811bcac9606eafd0 (patch)
tree58b38be6fdd7dd2ed919e820e2fb7535e0f15601 /calendar/gui/dialogs/event-page.c
parent5bf8290d437365955b9a3560e8aea316f12c30f6 (diff)
downloadgsoc2013-evolution-c2d58cc231a24ef344af1df6811bcac9606eafd0.tar
gsoc2013-evolution-c2d58cc231a24ef344af1df6811bcac9606eafd0.tar.gz
gsoc2013-evolution-c2d58cc231a24ef344af1df6811bcac9606eafd0.tar.bz2
gsoc2013-evolution-c2d58cc231a24ef344af1df6811bcac9606eafd0.tar.lz
gsoc2013-evolution-c2d58cc231a24ef344af1df6811bcac9606eafd0.tar.xz
gsoc2013-evolution-c2d58cc231a24ef344af1df6811bcac9606eafd0.tar.zst
gsoc2013-evolution-c2d58cc231a24ef344af1df6811bcac9606eafd0.zip
Added the delfrom property to the delegatee. Fixes #165714
2006-04-22 Harish Krishnaswamy <kharish@novell.com> * gui/dialogs/event-page.c (attendee_added_cb): Added the delfrom property to the delegatee. Fixes #165714 (bugzilla.novell.com) svn path=/trunk/; revision=31863
Diffstat (limited to 'calendar/gui/dialogs/event-page.c')
-rw-r--r--calendar/gui/dialogs/event-page.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c
index b560f5c9cd..b617be9550 100644
--- a/calendar/gui/dialogs/event-page.c
+++ b/calendar/gui/dialogs/event-page.c
@@ -1508,7 +1508,6 @@ event_page_fill_component (CompEditorPage *page, ECalComponent *comp)
set_attendees (comp, e_meeting_store_get_attendees (priv->model));
}
-
return TRUE;
}
@@ -1856,7 +1855,8 @@ attendee_added_cb (EMeetingListView *emlv, EMeetingAttendee *ia, gpointer user_d
delegator = e_meeting_store_find_attendee (priv->model, delegator_id, NULL);
e_meeting_attendee_set_delto (delegator,
g_strdup (e_meeting_attendee_get_address (ia)));
-
+
+ e_meeting_attendee_set_delfrom (ia, g_strdup_printf ("MAILTO:%s", delegator_id));
gtk_widget_set_sensitive (priv->invite, FALSE);
gtk_widget_set_sensitive (priv->add, FALSE);
gtk_widget_set_sensitive (priv->edit, FALSE);
@@ -3184,7 +3184,7 @@ set_attendees (ECalComponent *comp, const GPtrArray *attendees)
comp_attendees = g_slist_reverse (comp_attendees);
e_cal_component_set_attendee_list (comp, comp_attendees);
-
+
for (l = comp_attendees; l != NULL; l = l->next)
g_free (l->data);
g_slist_free (comp_attendees);