diff options
author | Rodrigo Moya <rodrigo@novell.com> | 2004-09-27 22:14:11 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-09-27 22:14:11 +0800 |
commit | c3a9a32b59ef4fb590e8a2232177630891b46b71 (patch) | |
tree | badeefb7cef58f15b17ac0487dd9d620f4efb7fa /calendar/gui/e-pub-utils.c | |
parent | 0e53ea76153f8fcb76cab43bd5143874a464b7c0 (diff) | |
download | gsoc2013-evolution-c3a9a32b59ef4fb590e8a2232177630891b46b71.tar.gz gsoc2013-evolution-c3a9a32b59ef4fb590e8a2232177630891b46b71.tar.zst gsoc2013-evolution-c3a9a32b59ef4fb590e8a2232177630891b46b71.zip |
Fixes #65599
2004-09-24 Rodrigo Moya <rodrigo@novell.com>
Fixes #65599
* gui/itip-utils.c (comp_fb_normalize): don't use NULL properties.
* gui/e-pub-utils.c (e_pub_publish): use auth_new_cal_from_source()
instead of auth_new_cal_from_uri().
svn path=/trunk/; revision=27394
Diffstat (limited to 'calendar/gui/e-pub-utils.c')
-rw-r--r-- | calendar/gui/e-pub-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-pub-utils.c b/calendar/gui/e-pub-utils.c index 456f695528..235ce8d159 100644 --- a/calendar/gui/e-pub-utils.c +++ b/calendar/gui/e-pub-utils.c @@ -263,7 +263,7 @@ e_pub_publish (gboolean publish) { source_uid = g_strdup (p->data); source = e_source_list_peek_source_by_uid (source_list, source_uid); if (source) - client = auth_new_cal_from_uri (e_source_get_uri (source), E_CAL_SOURCE_TYPE_EVENT); + client = auth_new_cal_from_source (source, E_CAL_SOURCE_TYPE_EVENT); if (!client) { g_warning (G_STRLOC ": Could not publish Free/Busy: Calendar backend no longer exists"); |