diff options
Diffstat (limited to 'camel/camel-provider.h')
-rw-r--r-- | camel/camel-provider.h | 8 |
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; |