From 02f9b53b41d226423579929a620cf8d4754ff18b Mon Sep 17 00:00:00 2001 From: Chenthill Palanisamy Date: Thu, 10 Nov 2005 10:27:19 +0000 Subject: fixes #313538. svn path=/trunk/; revision=30593 --- calendar/ChangeLog | 8 ++++++++ calendar/gui/dialogs/event-editor.c | 11 +---------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 12ebe10fce..a2e46e8fa9 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,11 @@ +2005-11-09 Chenthill Palanisamy + + Fixes #313538 + * gui/dialogs/event-editor.c: + (event_editor_edit_comp): Do not remove the attendees. Removed + the obsolete code as scheduling and meeting pages will be created + only for meetings now. + 2005-11-10 Chenthill Palanisamy Fixes #321088 diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c index a13e9bd6e1..0eefcd065a 100644 --- a/calendar/gui/dialogs/event-editor.c +++ b/calendar/gui/dialogs/event-editor.c @@ -226,17 +226,8 @@ event_editor_edit_comp (CompEditor *editor, ECalComponent *comp) e_cal_component_get_organizer (comp, &organizer); e_cal_component_get_attendee_list (comp, &attendees); - /* Clear things up */ - e_meeting_store_remove_all_attendees (priv->model); - /* Set up the attendees */ - if (attendees == NULL && !delegate) { - if (priv->meet_page) - comp_editor_remove_page (editor, COMP_EDITOR_PAGE (priv->meet_page)); - if (priv->sched_page) - comp_editor_remove_page (editor, COMP_EDITOR_PAGE (priv->sched_page)); - priv->meeting_shown = FALSE; - } else { + if (attendees != NULL) { GSList *l; int row; char *user_email; -- cgit v1.2.3