diff options
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/comp-editor-factory.c | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 1643b7b939..b6ef6d9689 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2004-05-17 <jpr@ximian.com> + + Fixes #56373 + + * gui/comp-editor-factory.c (open_client): guess its an event for + now + 2004-05-17 V Ravi Kumar Raju <vravikr@yahoo.co.uk> * gui/e-alarm-list.c (get_alarm_string): diff --git a/calendar/gui/comp-editor-factory.c b/calendar/gui/comp-editor-factory.c index 3763bbdb87..79ec53c78a 100644 --- a/calendar/gui/comp-editor-factory.c +++ b/calendar/gui/comp-editor-factory.c @@ -451,8 +451,8 @@ open_client (CompEditorFactory *factory, const char *uristr) priv = factory->priv; - /* FIXME get the type here */ - client = auth_new_cal_from_uri (uristr, E_CAL_SOURCE_TYPE_LAST); + /* FIXME get the type here, breaks if its a task alarm */ + client = auth_new_cal_from_uri (uristr, E_CAL_SOURCE_TYPE_EVENT); if (!client) return NULL; |