diff options
author | Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> | 2010-01-23 04:14:32 +0800 |
---|---|---|
committer | Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> | 2010-01-27 21:23:36 +0800 |
commit | d635b839f8d22746f44067464dc3c645aeeb8591 (patch) | |
tree | 066ae5e4f73ee2ff96d1ca5d6f3885213d1c3d44 /plugins/publish-calendar | |
parent | 0e06ff46d0cc53ae2108219490c0bb9c7106d33a (diff) | |
download | gsoc2013-evolution-d635b839f8d22746f44067464dc3c645aeeb8591.tar.gz gsoc2013-evolution-d635b839f8d22746f44067464dc3c645aeeb8591.tar.zst gsoc2013-evolution-d635b839f8d22746f44067464dc3c645aeeb8591.zip |
Make authentication functionality available
This involves renaming the calendar auth-related functions to have a
prefix, and shipping the headers.
Part of https://bugzilla.gnome.org/show_bug.cgi?id=608175
Diffstat (limited to 'plugins/publish-calendar')
-rw-r--r-- | plugins/publish-calendar/publish-format-fb.c | 2 | ||||
-rw-r--r-- | plugins/publish-calendar/publish-format-ical.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/publish-calendar/publish-format-fb.c b/plugins/publish-calendar/publish-format-fb.c index 01b4e7a926..e75dc79b2d 100644 --- a/plugins/publish-calendar/publish-format-fb.c +++ b/plugins/publish-calendar/publish-format-fb.c @@ -63,7 +63,7 @@ write_calendar (gchar *uid, ESourceList *source_list, GOutputStream *stream, gin source = e_source_list_peek_source_by_uid (source_list, uid); if (source) - client = auth_new_cal_from_source (source, E_CAL_SOURCE_TYPE_EVENT); + client = e_auth_new_cal_from_source (source, E_CAL_SOURCE_TYPE_EVENT); if (!client) { if (error) *error = g_error_new (e_calendar_error_quark (), E_CALENDAR_STATUS_NO_SUCH_CALENDAR, _("Could not publish calendar: Calendar backend no longer exists")); diff --git a/plugins/publish-calendar/publish-format-ical.c b/plugins/publish-calendar/publish-format-ical.c index f6e780daab..30312304e0 100644 --- a/plugins/publish-calendar/publish-format-ical.c +++ b/plugins/publish-calendar/publish-format-ical.c @@ -76,7 +76,7 @@ write_calendar (gchar *uid, ESourceList *source_list, GOutputStream *stream, GEr source = e_source_list_peek_source_by_uid (source_list, uid); if (source) - client = auth_new_cal_from_source (source, E_CAL_SOURCE_TYPE_EVENT); + client = e_auth_new_cal_from_source (source, E_CAL_SOURCE_TYPE_EVENT); if (!client) { if (error) *error = g_error_new (e_calendar_error_quark (), E_CALENDAR_STATUS_NO_SUCH_CALENDAR, _("Could not publish calendar: Calendar backend no longer exists")); |