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/gui/dialogs/event-editor.c | |
parent | 1b70a8153b256b9e07d89ad735099de036006cf5 (diff) | |
download | gsoc2013-evolution-02f9b53b41d226423579929a620cf8d4754ff18b.tar gsoc2013-evolution-02f9b53b41d226423579929a620cf8d4754ff18b.tar.gz gsoc2013-evolution-02f9b53b41d226423579929a620cf8d4754ff18b.tar.bz2 gsoc2013-evolution-02f9b53b41d226423579929a620cf8d4754ff18b.tar.lz gsoc2013-evolution-02f9b53b41d226423579929a620cf8d4754ff18b.tar.xz gsoc2013-evolution-02f9b53b41d226423579929a620cf8d4754ff18b.tar.zst gsoc2013-evolution-02f9b53b41d226423579929a620cf8d4754ff18b.zip |
fixes #313538.
svn path=/trunk/; revision=30593
Diffstat (limited to 'calendar/gui/dialogs/event-editor.c')
-rw-r--r-- | calendar/gui/dialogs/event-editor.c | 11 |
1 files changed, 1 insertions, 10 deletions
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; |