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/imapp | |
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/imapp')
-rw-r--r-- | camel/providers/imapp/camel-imapp-provider.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/providers/imapp/camel-imapp-provider.c b/camel/providers/imapp/camel-imapp-provider.c index 6b0cdd2d43..bdf33ec1da 100644 --- a/camel/providers/imapp/camel-imapp-provider.c +++ b/camel/providers/imapp/camel-imapp-provider.c @@ -72,7 +72,7 @@ CamelServiceAuthType camel_imapp_password_authtype = { }; void -camel_imapp_module_init(CamelSession *session) +camel_imapp_module_init(void) { extern void camel_exception_setup(void); @@ -87,11 +87,11 @@ camel_imapp_module_init(CamelSession *session) /* TEMPORARY */ camel_exception_setup(); - camel_session_register_provider(session, &imapp_provider); + camel_provider_register(&imapp_provider); } void -camel_provider_module_init(CamelSession *session) +camel_provider_module_init(void) { - camel_imapp_module_init(session); + camel_imapp_module_init(); } |