diff options
author | bertrand <bertrand@helixcode.com> | 2000-01-22 09:35:11 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-01-22 09:35:11 +0800 |
commit | e8a2fed920088141d8ed47c6803bc166b18c5418 (patch) | |
tree | adcebb99ddf323a7c408145556b000b2862ff8d9 /camel/providers/mbox/camel-mbox-store.h | |
parent | 8fbfb0ae4829f216501380e2f63ed6b4cc1a3306 (diff) | |
download | gsoc2013-evolution-e8a2fed920088141d8ed47c6803bc166b18c5418.tar gsoc2013-evolution-e8a2fed920088141d8ed47c6803bc166b18c5418.tar.gz gsoc2013-evolution-e8a2fed920088141d8ed47c6803bc166b18c5418.tar.bz2 gsoc2013-evolution-e8a2fed920088141d8ed47c6803bc166b18c5418.tar.lz gsoc2013-evolution-e8a2fed920088141d8ed47c6803bc166b18c5418.tar.xz gsoc2013-evolution-e8a2fed920088141d8ed47c6803bc166b18c5418.tar.zst gsoc2013-evolution-e8a2fed920088141d8ed47c6803bc166b18c5418.zip |
add exception handling everywhere in the store related functions
2000-01-21 bertrand <bertrand@helixcode.com>
* 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
Diffstat (limited to 'camel/providers/mbox/camel-mbox-store.h')
-rw-r--r-- | camel/providers/mbox/camel-mbox-store.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/mbox/camel-mbox-store.h b/camel/providers/mbox/camel-mbox-store.h index 8033d9d695..a5aea965e2 100644 --- a/camel/providers/mbox/camel-mbox-store.h +++ b/camel/providers/mbox/camel-mbox-store.h @@ -60,8 +60,8 @@ typedef struct { /* Standard Gtk function */ GtkType camel_mbox_store_get_type (void); -void camel_mbox_store_set_toplevel_dir (CamelMboxStore *store, const gchar *toplevel); -const gchar *camel_mbox_store_get_toplevel_dir (CamelMboxStore *store); +void camel_mbox_store_set_toplevel_dir (CamelMboxStore *store, const gchar *toplevel, CamelException *ex); +const gchar *camel_mbox_store_get_toplevel_dir (CamelMboxStore *store, CamelException *ex); #ifdef __cplusplus } |