diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-11-10 18:27:19 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-11-10 18:27:19 +0800 |
commit | 02f9b53b41d226423579929a620cf8d4754ff18b (patch) | |
tree | ed62b62b290fa2b0d9364120bb6675efde4bae53 /calendar | |
parent | 1b70a8153b256b9e07d89ad735099de036006cf5 (diff) | |
download | gsoc2013-evolution-02f9b53b41d226423579929a620cf8d4754ff18b.tar.gz gsoc2013-evolution-02f9b53b41d226423579929a620cf8d4754ff18b.tar.zst gsoc2013-evolution-02f9b53b41d226423579929a620cf8d4754ff18b.zip |
fixes #313538.
svn path=/trunk/; revision=30593
Diffstat (limited to 'calendar')
-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; |