diff options
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/tasks-component.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 78dddf9224..e86fe4a12b 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2004-01-30 JP Rosevear <jpr@ximian.com> + + * gui/tasks-component.c (create_new_todo): remove extraneous ; + + Fixes #53418 + 2004-01-29 JP Rosevear <jpr@ximian.com> * gui/migration.c (create_calendar_contact_source): don't set the diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c index 1ba79ba727..294292e427 100644 --- a/calendar/gui/tasks-component.c +++ b/calendar/gui/tasks-component.c @@ -668,13 +668,13 @@ create_new_todo (TasksComponent *task_component, CORBA_Environment *ev) gboolean read_only; priv = task_component->priv; - + if (!setup_create_ecal (task_component)) { bonobo_exception_set (ev, ex_GNOME_Evolution_Component_Failed); return; } - if (!e_cal_is_read_only (priv->create_ecal, &read_only, NULL) || read_only); + if (!e_cal_is_read_only (priv->create_ecal, &read_only, NULL) || read_only) return; editor = task_editor_new (priv->create_ecal); |