diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2009-01-30 17:38:57 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2009-01-30 17:38:57 +0800 |
commit | dfdaafa8816cf75e3a9a482c1bcbf4b54c331935 (patch) | |
tree | ce47168a67c21a06e015e15f7e0ad507641c7898 /calendar/gui/dialogs/event-editor.c | |
parent | d4d9c8155982362c95c256e851d14d63f3ee7fbd (diff) | |
download | gsoc2013-evolution-dfdaafa8816cf75e3a9a482c1bcbf4b54c331935.tar.gz gsoc2013-evolution-dfdaafa8816cf75e3a9a482c1bcbf4b54c331935.tar.zst gsoc2013-evolution-dfdaafa8816cf75e3a9a482c1bcbf4b54c331935.zip |
Fix for bug #450554 (bugzilla.novell.com) - Remove all attendees from the list-view and name-selector before populating it on 'event_changed' callback.
svn path=/trunk/; revision=37191
Diffstat (limited to 'calendar/gui/dialogs/event-editor.c')
-rw-r--r-- | calendar/gui/dialogs/event-editor.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c index e3d3448f6c..a297765fa6 100644 --- a/calendar/gui/dialogs/event-editor.c +++ b/calendar/gui/dialogs/event-editor.c @@ -565,6 +565,8 @@ event_editor_edit_comp (CompEditor *editor, ECalComponent *comp) } if (!(delegate && e_cal_get_static_capability (client, CAL_STATIC_CAPABILITY_DELEGATE_TO_MANY))) { + event_page_remove_all_attendees (priv->event_page); + for (l = attendees; l != NULL; l = l->next) { ECalComponentAttendee *ca = l->data; EMeetingAttendee *ia; |