diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index a1e79df163..181c388cac 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2002-08-09 JP Rosevear <jpr@ximian.com> + + * gui/dialogs/comp-editor.c (real_send_comp): set the editor to + changed so the item actually gets saved + 2002-08-08 JP Rosevear <jpr@ximian.com> * gui/itip-utils.c (users_has_attendee): check for an attendee in diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 2322b3bb69..a5ad2b811b 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -967,6 +967,8 @@ real_send_comp (CompEditor *editor, CalComponentItipMethod method) gtk_object_ref (GTK_OBJECT (tmp_comp)); comp_editor_edit_comp (editor, tmp_comp); gtk_object_unref (GTK_OBJECT (tmp_comp)); + + comp_editor_set_changed (editor, TRUE); save_comp (editor); } |