aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/tasks-component.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2004-01-30 15:48:24 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-01-30 15:48:24 +0800
commit44cb16b47dea332920948150d9e58c505d02b7a6 (patch)
treed21ed88816ab1d3f07819abf61c0e886b1148d11 /calendar/gui/tasks-component.c
parent650b5bcdc84ec336c45d509243e08f0457db5650 (diff)
downloadgsoc2013-evolution-44cb16b47dea332920948150d9e58c505d02b7a6.tar
gsoc2013-evolution-44cb16b47dea332920948150d9e58c505d02b7a6.tar.gz
gsoc2013-evolution-44cb16b47dea332920948150d9e58c505d02b7a6.tar.bz2
gsoc2013-evolution-44cb16b47dea332920948150d9e58c505d02b7a6.tar.lz
gsoc2013-evolution-44cb16b47dea332920948150d9e58c505d02b7a6.tar.xz
gsoc2013-evolution-44cb16b47dea332920948150d9e58c505d02b7a6.tar.zst
gsoc2013-evolution-44cb16b47dea332920948150d9e58c505d02b7a6.zip
remove extraneous ;
2004-01-30 JP Rosevear <jpr@ximian.com> * gui/tasks-component.c (create_new_todo): remove extraneous ; Fixes #53418 svn path=/trunk/; revision=24536
Diffstat (limited to 'calendar/gui/tasks-component.c')
-rw-r--r--calendar/gui/tasks-component.c4
1 files changed, 2 insertions, 2 deletions
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);