diff options
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/dialogs/meeting-page.c | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 91eea57af8..a729739271 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2002-09-20 JP Rosevear <jpr@ximian.com> + + * gui/dialogs/meeting-page.c (meeting_page_fill_widgets): set the + deleted attendees array to size 0 after we clean it up + + Fixes #30479 + 2002-09-20 Rodrigo Moya <rodrigo@ximian.com> * pcs/query.c (parse_sexp): remove the query from the cache if it diff --git a/calendar/gui/dialogs/meeting-page.c b/calendar/gui/dialogs/meeting-page.c index 554afd2ecd..011f1301af 100644 --- a/calendar/gui/dialogs/meeting-page.c +++ b/calendar/gui/dialogs/meeting-page.c @@ -333,7 +333,8 @@ meeting_page_fill_widgets (CompEditorPage *page, CalComponent *comp) priv->comp = NULL; cleanup_attendees (priv->deleted_attendees); - + g_ptr_array_set_size (priv->deleted_attendees, 0); + /* Clean the screen */ clear_widgets (mpage); |