diff options
author | JP Rosevear <jpr@novell.com> | 2004-08-05 21:14:45 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-08-05 21:14:45 +0800 |
commit | b8589b570f918a284a2b864b721e2e98e3be82bf (patch) | |
tree | cda32a33d427542931a881f03dc89e58d5a3d430 | |
parent | fa7aaa60f338bb2600d0d354259b1368e226b4e0 (diff) | |
download | gsoc2013-evolution-b8589b570f918a284a2b864b721e2e98e3be82bf.tar.gz gsoc2013-evolution-b8589b570f918a284a2b864b721e2e98e3be82bf.tar.zst gsoc2013-evolution-b8589b570f918a284a2b864b721e2e98e3be82bf.zip |
Fixes #62363
004-08-05 JP Rosevear <jpr@novell.com>
Fixes #62363
* gui/calendar-component.c (create_new_event):
commit the sequence
svn path=/trunk/; revision=26826
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/calendar-component.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 521a512666..eac473091e 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2004-08-05 JP Rosevear <jpr@novell.com> + + Fixes #62363 + + * gui/calendar-component.c (create_new_event): + commit the sequence + 2004-08-04 Harish Krishnaswamy <kharish@novell.com> * gui/e-itip-control.c: (ok_clicked_cb): Handle decline request by diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index b0b3af2480..083642dff2 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -983,6 +983,7 @@ create_new_event (CalendarComponent *calendar_component, CalendarComponentView * editor = event_editor_new (ecal); comp = cal_comp_event_new_with_current_time (ecal, is_allday); + e_cal_component_commit_sequence (comp); comp_editor_edit_comp (COMP_EDITOR (editor), comp); if (is_meeting) |