diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-08-12 19:00:04 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-08-12 19:00:04 +0800 |
commit | 96b7f9a5fd8eaafc7b79ef8761a5b2ff15850b4c (patch) | |
tree | 20e4a4a6b78817c41fef8e005511af4a74e4baae /camel/camel-store.h | |
parent | f888058fc6e6db2309336426662023502a461d5a (diff) | |
download | gsoc2013-evolution-96b7f9a5fd8eaafc7b79ef8761a5b2ff15850b4c.tar.gz gsoc2013-evolution-96b7f9a5fd8eaafc7b79ef8761a5b2ff15850b4c.tar.zst gsoc2013-evolution-96b7f9a5fd8eaafc7b79ef8761a5b2ff15850b4c.zip |
compilation and runtime fixes.
1999-08-12 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/camel-session.c (camel_session_get_store_for_protocol):
compilation and runtime fixes.
* camel/providers/MH/camel-mh-store.c (_init):
synced with CamelStore.
* camel/camel-store.c (_init):
in CamelStore::init, url_name is now const.
disabled url_name copy.
Last check in did not even compile...
svn path=/trunk/; revision=1107
Diffstat (limited to 'camel/camel-store.h')
-rw-r--r-- | camel/camel-store.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-store.h b/camel/camel-store.h index fea908ce99..9634e9d0e7 100644 --- a/camel/camel-store.h +++ b/camel/camel-store.h @@ -59,7 +59,7 @@ struct _CamelStore typedef struct { CamelServiceClass parent_class; - void (*init) (CamelStore *store, CamelSession *session, gchar *url_name); + void (*init) (CamelStore *store, CamelSession *session, const gchar *url_name); void (*set_separator) (CamelStore *store, gchar sep); gchar (*get_separator) (CamelStore *store); CamelFolder * (*get_folder) (CamelStore *store, const gchar *folder_name); @@ -74,7 +74,7 @@ typedef struct { /* Standard Gtk function */ GtkType camel_store_get_type (void); -void camel_store_init (CamelStore *store, CamelSession *session, gchar *url_name); +void camel_store_init (CamelStore *store, CamelSession *session, const gchar *url_name); CamelFolder *camel_store_get_folder (CamelStore *store, const gchar *folder_name); gchar camel_store_get_separator (CamelStore *store); |