aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-provider.h
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@inria.fr>1999-04-25 19:21:33 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-04-25 19:21:33 +0800
commitf9595bb213b103bf071e97ea2f93886767aa7f64 (patch)
treece3cef62fd99fbc4202f0fef13df729ac688b347 /camel/camel-provider.h
parent8fa0292a20436587037ed5b63867563f6c26e3e0 (diff)
downloadgsoc2013-evolution-f9595bb213b103bf071e97ea2f93886767aa7f64.tar
gsoc2013-evolution-f9595bb213b103bf071e97ea2f93886767aa7f64.tar.gz
gsoc2013-evolution-f9595bb213b103bf071e97ea2f93886767aa7f64.tar.bz2
gsoc2013-evolution-f9595bb213b103bf071e97ea2f93886767aa7f64.tar.lz
gsoc2013-evolution-f9595bb213b103bf071e97ea2f93886767aa7f64.tar.xz
gsoc2013-evolution-f9595bb213b103bf071e97ea2f93886767aa7f64.tar.zst
gsoc2013-evolution-f9595bb213b103bf071e97ea2f93886767aa7f64.zip
new method to set the default provider for a protocol.
1999-04-25 bertrand <Bertrand.Guiheneuf@inria.fr> * camel/camel-session.c (camel_session_set_provider): new method to set the default provider for a protocol. (camel_session_get_store_from_provider): new method to instantiate a folder from a provider. * camel/camel-provider.h: s/GString/gchar/g + typo fix. svn path=/trunk/; revision=878
Diffstat (limited to 'camel/camel-provider.h')
-rw-r--r--camel/camel-provider.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/camel-provider.h b/camel/camel-provider.h
index 85eb11ee57..54b9ef2a2a 100644
--- a/camel/camel-provider.h
+++ b/camel/camel-provider.h
@@ -40,10 +40,10 @@ typedef enum {
typedef struct {
GtkType object_type; /* used to create instance of the provider */
ProviderType provider_type; /* is a store or a transport */
- GString *protocol; /* name of the protocol ("imap"/"smtp"/"mh" ...) */
- GString *provider_name; /* name of the provider ("Raymond the imap provider") */
- GString *description; /* Useful when multiple providers are available for a same protocol */
-} CameProvider;
+ gchar *protocol; /* name of the protocol ("imap"/"smtp"/"mh" ...) */
+ gchar *provider_name; /* name of the provider ("Raymond the imap provider") */
+ gchar *description; /* Useful when multiple providers are available for a same protocol */
+} CamelProvider;