aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@src.gnome.org>2005-02-09 22:37:48 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2005-02-09 22:37:48 +0800
commit23e0e50fff7032da03d22ae75b7c13219ad063f7 (patch)
treebe60d9c3d1986e409bf29d509b4e911ae101614a /calendar/gui
parent5010fff5d1a46f3fdfe4e575aaef41878645712c (diff)
downloadgsoc2013-evolution-23e0e50fff7032da03d22ae75b7c13219ad063f7.tar
gsoc2013-evolution-23e0e50fff7032da03d22ae75b7c13219ad063f7.tar.gz
gsoc2013-evolution-23e0e50fff7032da03d22ae75b7c13219ad063f7.tar.bz2
gsoc2013-evolution-23e0e50fff7032da03d22ae75b7c13219ad063f7.tar.lz
gsoc2013-evolution-23e0e50fff7032da03d22ae75b7c13219ad063f7.tar.xz
gsoc2013-evolution-23e0e50fff7032da03d22ae75b7c13219ad063f7.tar.zst
gsoc2013-evolution-23e0e50fff7032da03d22ae75b7c13219ad063f7.zip
Always remove the meeting and scheduling pages when there are no
attendees. This allows the sender to be added to the attendees list by default while creating new meetings. svn path=/trunk/; revision=28756
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/dialogs/event-editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c
index 8b4c74da0f..2d72dfab06 100644
--- a/calendar/gui/dialogs/event-editor.c
+++ b/calendar/gui/dialogs/event-editor.c
@@ -217,7 +217,7 @@ event_editor_edit_comp (CompEditor *editor, ECalComponent *comp)
e_meeting_store_remove_all_attendees (priv->model);
/* Set up the attendees */
- if (attendees == NULL && !priv->is_meeting) {
+ if (attendees == NULL) {
if (priv->meet_page)
comp_editor_remove_page (editor, COMP_EDITOR_PAGE (priv->meet_page));
if (priv->sched_page)