From d635b839f8d22746f44067464dc3c645aeeb8591 Mon Sep 17 00:00:00 2001 From: Gustavo Noronha Silva Date: Fri, 22 Jan 2010 18:14:32 -0200 Subject: 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 --- calendar/importers/icalendar-importer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'calendar/importers') diff --git a/calendar/importers/icalendar-importer.c b/calendar/importers/icalendar-importer.c index b7b2b515ad..1f7da5e421 100644 --- a/calendar/importers/icalendar-importer.c +++ b/calendar/importers/icalendar-importer.c @@ -321,7 +321,7 @@ ivcal_import(EImport *ei, EImportTarget *target, icalcomponent *icalcomp) type = GPOINTER_TO_INT(g_datalist_get_data(&target->data, "primary-type")); - client = auth_new_cal_from_source (g_datalist_get_data(&target->data, "primary-source"), type); + client = e_auth_new_cal_from_source (g_datalist_get_data(&target->data, "primary-source"), type); if (client) { ICalImporter *ici = g_malloc0(sizeof(*ici)); @@ -629,13 +629,13 @@ gnome_calendar_import(EImport *ei, EImportTarget *target, EImportImporter *im) /* Try to open the default calendar & tasks folders. */ if (do_calendar) { - calendar_client = auth_new_cal_from_default (E_CAL_SOURCE_TYPE_EVENT); + calendar_client = e_auth_new_cal_from_default (E_CAL_SOURCE_TYPE_EVENT); if (!calendar_client) goto out; } if (do_tasks) { - tasks_client = auth_new_cal_from_default (E_CAL_SOURCE_TYPE_TODO); + tasks_client = e_auth_new_cal_from_default (E_CAL_SOURCE_TYPE_TODO); if (!tasks_client) goto out; } -- cgit v1.2.3