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 --- modules/calendar/e-cal-shell-backend.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/calendar/e-cal-shell-backend.c') diff --git a/modules/calendar/e-cal-shell-backend.c b/modules/calendar/e-cal-shell-backend.c index 232e8461c3..30bad0a4bf 100644 --- a/modules/calendar/e-cal-shell-backend.c +++ b/modules/calendar/e-cal-shell-backend.c @@ -402,12 +402,12 @@ action_event_new_cb (GtkAction *action, source = e_source_list_peek_source_by_uid (source_list, uid); if (source != NULL) - cal = auth_new_cal_from_source (source, source_type); + cal = e_auth_new_cal_from_source (source, source_type); g_free (uid); } if (cal == NULL) - cal = auth_new_cal_from_default (source_type); + cal = e_auth_new_cal_from_default (source_type); g_return_if_fail (cal != NULL); @@ -598,7 +598,7 @@ cal_shell_backend_handle_uri_cb (EShellBackend *shell_backend, goto exit; } - client = auth_new_cal_from_source (source, source_type); + client = e_auth_new_cal_from_source (source, source_type); if (client == NULL || !e_cal_open (client, TRUE, &error)) { if (error != NULL) { g_printerr ("%s\n", error->message); -- cgit v1.2.3