diff options
author | JP Rosevear <jpr@ximian.com> | 2004-05-18 01:42:53 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-05-18 01:42:53 +0800 |
commit | 9f58b3115eecdb0f4a4946638a577166eb849868 (patch) | |
tree | d55b1d48044eb8d1fe8c52b42cf481ed3e13af61 /calendar/gui/comp-editor-factory.c | |
parent | 00db669200340e4a342a8092a09b4099d7611134 (diff) | |
download | gsoc2013-evolution-9f58b3115eecdb0f4a4946638a577166eb849868.tar.gz gsoc2013-evolution-9f58b3115eecdb0f4a4946638a577166eb849868.tar.zst gsoc2013-evolution-9f58b3115eecdb0f4a4946638a577166eb849868.zip |
Fixes #56373
2004-05-17 JP Rosevear <jpr@ximian.com>
Fixes #56373
* gui/comp-editor-factory.c (open_client): guess its an event
for
now
svn path=/trunk/; revision=25932
Diffstat (limited to 'calendar/gui/comp-editor-factory.c')
-rw-r--r-- | calendar/gui/comp-editor-factory.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |