From e8a2fed920088141d8ed47c6803bc166b18c5418 Mon Sep 17 00:00:00 2001 From: bertrand Date: Sat, 22 Jan 2000 01:35:11 +0000 Subject: add exception handling everywhere in the store related functions 2000-01-21 bertrand * camel/camel-store.c: add exception handling everywhere in the store related functions arguments. * camel/providers/mbox/camel-mbox-folder.c: idem * camel/providers/mbox/camel-mbox-folder.h: idem * camel/providers/mbox/camel-mbox-store.h: idem * camel/providers/mbox/Makefile.am (libcamelmbox_la_SOURCES): added camel-mbox-provider.c to the mbox provider sources. svn path=/trunk/; revision=1605 --- camel/camel-session.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'camel/camel-session.c') diff --git a/camel/camel-session.c b/camel/camel-session.c index ff065b8c74..923d60c629 100644 --- a/camel/camel-session.c +++ b/camel/camel-session.c @@ -139,7 +139,7 @@ camel_session_get_store_from_provider (CamelSession *session, CamelProvider *pro store = CAMEL_STORE (gtk_object_new (provider->object_type, NULL)); #warning set the url to a useful value. - camel_store_init(store, session, NULL); + camel_store_init(store, session, NULL, NULL); return store; } @@ -208,7 +208,7 @@ camel_session_get_store (CamelSession *session, const gchar *url_string) if (url->protocol) { new_store = camel_session_get_store_for_protocol (session, url->protocol); if (new_store) - camel_store_init (new_store, session, url_string); + camel_store_init (new_store, session, url_string, NULL); } g_url_free (url); -- cgit v1.2.3