aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2005-01-08 04:24:49 +0800
committerJP Rosevear <jpr@src.gnome.org>2005-01-08 04:24:49 +0800
commit7ebffdce1b5df71cb40b7b86a4d0350971fde788 (patch)
treed7e8e4700aef99e762fd192c594137eefb51f761
parent7bff0633bf1c5ef2ba72382d4715f8ad6f291857 (diff)
downloadgsoc2013-evolution-7ebffdce1b5df71cb40b7b86a4d0350971fde788.tar
gsoc2013-evolution-7ebffdce1b5df71cb40b7b86a4d0350971fde788.tar.gz
gsoc2013-evolution-7ebffdce1b5df71cb40b7b86a4d0350971fde788.tar.bz2
gsoc2013-evolution-7ebffdce1b5df71cb40b7b86a4d0350971fde788.tar.lz
gsoc2013-evolution-7ebffdce1b5df71cb40b7b86a4d0350971fde788.tar.xz
gsoc2013-evolution-7ebffdce1b5df71cb40b7b86a4d0350971fde788.tar.zst
gsoc2013-evolution-7ebffdce1b5df71cb40b7b86a4d0350971fde788.zip
clear the attendees, somehow I remove this in an earlier commit
2005-01-07 JP Rosevear <jpr@novell.com> * gui/dialogs/event-editor.c (event_editor_edit_comp): clear the attendees, somehow I remove this in an earlier commit svn path=/trunk/; revision=28278
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in1
-rw-r--r--calendar/gui/dialogs/event-editor.c3
3 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 170543aa0e..c775d3d81c 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-07 JP Rosevear <jpr@novell.com>
+
+ * gui/dialogs/event-editor.c (event_editor_edit_comp): clear the
+ attendees, somehow I remove this in an earlier commit
+
2005-01-07 Rodrigo Moya <rodrigo@novell.com>
* gui/dialogs/event-page.glade:
diff --git a/calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in b/calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in
index e528b15f75..91007dece2 100644
--- a/calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in
+++ b/calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in
@@ -10,7 +10,6 @@
<oaf_attribute name="name" type="string"
_value="Evolution Calendar alarm notification service"/>
-
</oaf_server>
<oaf_server iid="OAFIID:GNOME_Evolution_Calendar_AlarmNotify:@VERSION@"
diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c
index fb550d9724..a4edd680f9 100644
--- a/calendar/gui/dialogs/event-editor.c
+++ b/calendar/gui/dialogs/event-editor.c
@@ -211,6 +211,9 @@ 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 && !priv->is_meeting) {
if (priv->meet_page)