diff options
author | Not Zed <NotZed@Ximian.com> | 2004-02-19 15:27:49 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-02-19 15:27:49 +0800 |
commit | 05e0ef6fea2f2feec010109142c8305c69e64c57 (patch) | |
tree | f01a116128a1e73d5971bf1ba1bfc711e292aaf4 /camel/providers/imap | |
parent | 8b86c88624f926a7122ab4dd39ebd26d0e839ab2 (diff) | |
download | gsoc2013-evolution-05e0ef6fea2f2feec010109142c8305c69e64c57.tar gsoc2013-evolution-05e0ef6fea2f2feec010109142c8305c69e64c57.tar.gz gsoc2013-evolution-05e0ef6fea2f2feec010109142c8305c69e64c57.tar.bz2 gsoc2013-evolution-05e0ef6fea2f2feec010109142c8305c69e64c57.tar.lz gsoc2013-evolution-05e0ef6fea2f2feec010109142c8305c69e64c57.tar.xz gsoc2013-evolution-05e0ef6fea2f2feec010109142c8305c69e64c57.tar.zst gsoc2013-evolution-05e0ef6fea2f2feec010109142c8305c69e64c57.zip |
Fixes for api changes.
2004-02-19 Not Zed <NotZed@Ximian.com>
* providers/*/camel-*-provider.c
(camel_provider_module_init): Fixes for api changes.
* camel-provider.c (camel_provider_load): no longer take session
argument. the providers are global resources.
(camel_provider_init): dont return anything anymore. (error?)
call from camel_init now. Use a recursive lock too.
* camel-session.c (camel_session_register_provider)
(camel_session_list_providers, camel_session_get_provider): Moved
to camel-provider, camel_provider_register/list/get.
(vee_provider): moved to camel-provider.c
svn path=/trunk/; revision=24794
Diffstat (limited to 'camel/providers/imap')
-rw-r--r-- | camel/providers/imap/camel-imap-provider.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/camel/providers/imap/camel-imap-provider.c b/camel/providers/imap/camel-imap-provider.c index abda8f89a0..fb7c69766c 100644 --- a/camel/providers/imap/camel-imap-provider.c +++ b/camel/providers/imap/camel-imap-provider.c @@ -96,17 +96,15 @@ CamelServiceAuthType camel_imap_password_authtype = { }; void -camel_provider_module_init (CamelSession *session) +camel_provider_module_init(void) { - imap_provider.object_types[CAMEL_PROVIDER_STORE] = - camel_imap_store_get_type (); + imap_provider.object_types[CAMEL_PROVIDER_STORE] = camel_imap_store_get_type (); imap_provider.url_hash = imap_url_hash; imap_provider.url_equal = imap_url_equal; imap_provider.authtypes = camel_sasl_authtype_list (FALSE); - imap_provider.authtypes = g_list_prepend (imap_provider.authtypes, - &camel_imap_password_authtype); + imap_provider.authtypes = g_list_prepend (imap_provider.authtypes, &camel_imap_password_authtype); - camel_session_register_provider (session, &imap_provider); + camel_provider_register(&imap_provider); } static void |