diff options
-rw-r--r-- | calendar/ChangeLog | 4 | ||||
-rw-r--r-- | calendar/gui/e-calendar-view.c | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 60ccaf10e2..a0e198094c 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,9 @@ 2004-03-23 JP Rosevear <jpr@ximian.com> + * gui/e-calendar-view.c: make the flow control correct + +2004-03-23 JP Rosevear <jpr@ximian.com> + * gui/migration.c (create_calendar_sources, create_task_sources): ensure that only one Personal calendar/task list gets created when moving between minor versions diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index 24c12fa5e6..efdd046b3d 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -1639,8 +1639,7 @@ e_calendar_view_modify_and_send (ECalComponent *comp, if (itip_organizer_is_user (comp, client) && send_component_dialog (toplevel, client, comp, new)) { itip_send_comp (E_CAL_COMPONENT_METHOD_REQUEST, comp, client, NULL); - } else { - g_message (G_STRLOC ": Could not update the object!"); - } - } + } else { + g_message (G_STRLOC ": Could not update the object!"); + } } |