aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-09-01 02:50:39 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-09-01 02:50:39 +0800
commitcef3994097497dec1145d186950bbd7f651393c5 (patch)
tree74b83a973c297e3d0ed423865e0f612acc88d233 /modules/calendar
parentf5991437c3e620708f1701310bd1e67b40ca3b42 (diff)
downloadgsoc2013-evolution-cef3994097497dec1145d186950bbd7f651393c5.tar
gsoc2013-evolution-cef3994097497dec1145d186950bbd7f651393c5.tar.gz
gsoc2013-evolution-cef3994097497dec1145d186950bbd7f651393c5.tar.bz2
gsoc2013-evolution-cef3994097497dec1145d186950bbd7f651393c5.tar.lz
gsoc2013-evolution-cef3994097497dec1145d186950bbd7f651393c5.tar.xz
gsoc2013-evolution-cef3994097497dec1145d186950bbd7f651393c5.tar.zst
gsoc2013-evolution-cef3994097497dec1145d186950bbd7f651393c5.zip
Bug 593613 - Doesn't differentiate an appointment and meeting button click
Diffstat (limited to 'modules/calendar')
-rw-r--r--modules/calendar/e-cal-shell-backend.c3
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));