diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-09-01 02:50:39 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-09-01 02:50:39 +0800 |
commit | cef3994097497dec1145d186950bbd7f651393c5 (patch) | |
tree | 74b83a973c297e3d0ed423865e0f612acc88d233 | |
parent | f5991437c3e620708f1701310bd1e67b40ca3b42 (diff) | |
download | gsoc2013-evolution-cef3994097497dec1145d186950bbd7f651393c5.tar.gz gsoc2013-evolution-cef3994097497dec1145d186950bbd7f651393c5.tar.zst gsoc2013-evolution-cef3994097497dec1145d186950bbd7f651393c5.zip |
Bug 593613 - Doesn't differentiate an appointment and meeting button click
-rw-r--r-- | modules/calendar/e-cal-shell-backend.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/calendar/e-cal-shell-backend.c b/modules/calendar/e-cal-shell-backend.c index 6511d0e453..bb59356dae 100644 --- a/modules/calendar/e-cal-shell-backend.c +++ b/modules/calendar/e-cal-shell-backend.c @@ -341,6 +341,7 @@ cal_shell_backend_event_new_cb (ECal *cal, editor = event_editor_new (cal, shell, flags); comp = cal_comp_event_new_with_current_time (cal, FALSE); + e_cal_component_commit_sequence (comp); comp_editor_edit_comp (editor, comp); gtk_window_present (GTK_WINDOW (editor)); @@ -367,6 +368,7 @@ cal_shell_backend_event_all_day_new_cb (ECal *cal, editor = event_editor_new (cal, shell, flags); comp = cal_comp_event_new_with_current_time (cal, TRUE); + e_cal_component_commit_sequence (comp); comp_editor_edit_comp (editor, comp); gtk_window_present (GTK_WINDOW (editor)); @@ -394,6 +396,7 @@ cal_shell_backend_event_meeting_new_cb (ECal *cal, editor = event_editor_new (cal, shell, flags); comp = cal_comp_event_new_with_current_time (cal, FALSE); + e_cal_component_commit_sequence (comp); comp_editor_edit_comp (editor, comp); gtk_window_present (GTK_WINDOW (editor)); |