diff options
author | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-09-24 03:26:54 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-09-24 03:26:54 +0800 |
commit | 6ed1a40852d43229bec2509d7d0b9e35efde163f (patch) | |
tree | 3e62a7cf60ceaaecfbf05f4d8ed09207690cfcc2 /camel/providers/MH/camel-mh-store.c | |
parent | 6d24357f783eff964bcae1c531e08c5040b3b919 (diff) | |
download | gsoc2013-evolution-6ed1a40852d43229bec2509d7d0b9e35efde163f.tar.gz gsoc2013-evolution-6ed1a40852d43229bec2509d7d0b9e35efde163f.tar.zst gsoc2013-evolution-6ed1a40852d43229bec2509d7d0b9e35efde163f.zip |
Added corba-like exception system to CamelFolder. The exception system is
* Added corba-like exception system to CamelFolder.
The exception system is not finished but I wanted
the async and event implementation to get this right
from the beginning.
svn path=/trunk/; revision=1256
Diffstat (limited to 'camel/providers/MH/camel-mh-store.c')
-rw-r--r-- | camel/providers/MH/camel-mh-store.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/MH/camel-mh-store.c b/camel/providers/MH/camel-mh-store.c index 24a8c8a72c..60ba07f47b 100644 --- a/camel/providers/MH/camel-mh-store.c +++ b/camel/providers/MH/camel-mh-store.c @@ -145,8 +145,8 @@ _get_folder (CamelStore *store, const gchar *folder_name) new_mh_folder = gtk_type_new (CAMEL_MH_FOLDER_TYPE); new_folder = CAMEL_FOLDER (new_mh_folder); - CF_CLASS (new_folder)->init_with_store (new_folder, store); - CF_CLASS (new_folder)->set_name (new_folder, folder_name); + CF_CLASS (new_folder)->init_with_store (new_folder, store, NULL); + CF_CLASS (new_folder)->set_name (new_folder, folder_name, NULL); return new_folder; |