aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/task-editor.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-11-07 23:43:32 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-11-07 23:43:32 +0800
commitf7c509da222e019b85e30621d4ee455335195379 (patch)
treed4535a3967e23db6961078c805617bab22660bd0 /calendar/gui/dialogs/task-editor.c
parent68459c289cc021f255ad780b9221bcde1d3952e9 (diff)
downloadgsoc2013-evolution-f7c509da222e019b85e30621d4ee455335195379.tar
gsoc2013-evolution-f7c509da222e019b85e30621d4ee455335195379.tar.gz
gsoc2013-evolution-f7c509da222e019b85e30621d4ee455335195379.tar.bz2
gsoc2013-evolution-f7c509da222e019b85e30621d4ee455335195379.tar.lz
gsoc2013-evolution-f7c509da222e019b85e30621d4ee455335195379.tar.xz
gsoc2013-evolution-f7c509da222e019b85e30621d4ee455335195379.tar.zst
gsoc2013-evolution-f7c509da222e019b85e30621d4ee455335195379.zip
make sure to remove all attendees from the model when we edit a new comp,
2001-11-06 JP Rosevear <jpr@ximian.com> * gui/dialogs/event-editor.c (event_editor_edit_comp): make sure to remove all attendees from the model when we edit a new comp, append the pages if they are needed and we weren't showing them before * gui/dialogs/task-editor.c (task_editor_edit_comp): same as above * gui/dialogs/comp-editor.c (comp_editor_remove_page): check for a return value indicating the page was not found and return if so svn path=/trunk/; revision=14615
Diffstat (limited to 'calendar/gui/dialogs/task-editor.c')
-rw-r--r--calendar/gui/dialogs/task-editor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c
index 9956137c4c..e59582873f 100644
--- a/calendar/gui/dialogs/task-editor.c
+++ b/calendar/gui/dialogs/task-editor.c
@@ -212,11 +212,11 @@ task_editor_edit_comp (CompEditor *editor, CalComponent *comp)
priv->updating = TRUE;
priv->existing_org = cal_component_has_organizer (comp);
-
cal_component_get_attendee_list (comp, &attendees);
+
+ e_meeting_model_remove_all_attendees (priv->model);
if (attendees == NULL) {
- if (priv->meeting_shown)
- comp_editor_remove_page (editor, COMP_EDITOR_PAGE (priv->meet_page));
+ comp_editor_remove_page (editor, COMP_EDITOR_PAGE (priv->meet_page));
priv->meeting_shown = FALSE;
} else {
GSList *l;