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 /calendar/common/authentication.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 'calendar/common/authentication.c')
-rw-r--r-- | calendar/common/authentication.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/common/authentication.c b/calendar/common/authentication.c index 7b0b2e7972..baacc1ead4 100644 --- a/calendar/common/authentication.c +++ b/calendar/common/authentication.c @@ -73,7 +73,7 @@ build_pass_key (ECal *ecal) } void -auth_cal_forget_password (ECal *ecal) +e_auth_cal_forget_password (ECal *ecal) { ESource *source = NULL; const gchar *auth_domain = NULL, *component_name = NULL, *auth_type = NULL; @@ -95,7 +95,7 @@ auth_cal_forget_password (ECal *ecal) } ECal * -auth_new_cal_from_default (ECalSourceType type) +e_auth_new_cal_from_default (ECalSourceType type) { ECal *ecal = NULL; @@ -106,7 +106,7 @@ auth_new_cal_from_default (ECalSourceType type) } ECal * -auth_new_cal_from_source (ESource *source, ECalSourceType type) +e_auth_new_cal_from_source (ESource *source, ECalSourceType type) { ECal *cal; @@ -118,7 +118,7 @@ auth_new_cal_from_source (ESource *source, ECalSourceType type) } ECal * -auth_new_cal_from_uri (const gchar *uri, ECalSourceType type) +e_auth_new_cal_from_uri (const gchar *uri, ECalSourceType type) { ESourceGroup *group = NULL; ESource *source = NULL; @@ -172,7 +172,7 @@ auth_new_cal_from_uri (const gchar *uri, ECalSourceType type) } } - cal = auth_new_cal_from_source (source, type); + cal = e_auth_new_cal_from_source (source, type); g_object_unref (source); if (group) |