diff options
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | 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 <pchenthill@novell.com> + + 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 <pchenthill@novell.com> 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; |