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 /modules/calendar/e-task-shell-backend.c | |
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 'modules/calendar/e-task-shell-backend.c')
-rw-r--r-- | modules/calendar/e-task-shell-backend.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/calendar/e-task-shell-backend.c b/modules/calendar/e-task-shell-backend.c index 1a8bee5a03..1db691497c 100644 --- a/modules/calendar/e-task-shell-backend.c +++ b/modules/calendar/e-task-shell-backend.c @@ -283,12 +283,12 @@ action_task_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); @@ -429,7 +429,7 @@ task_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); |