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 | |
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')
-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; |