From 23dbc72fd36b02208dc6bfdd68d97870434db18a Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 10 May 2001 21:20:09 +0000 Subject: Fix some compiler warnings by including the correct bonobo headers and by 2001-05-10 Jeffrey Stedfast * mail-config.c: Fix some compiler warnings by including the correct bonobo headers and by using the correct bonobo types. (config_read): Some fixes so that we can never have an empty string as a URL. svn path=/trunk/; revision=9750 --- mail/ChangeLog | 7 ++++++ mail/mail-config.c | 63 ++++++++++++++++++++++++++++++++++-------------------- mail/mail-config.h | 4 ++++ 3 files changed, 51 insertions(+), 23 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 8746e2a868..59adcbfb61 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2001-05-10 Jeffrey Stedfast + + * mail-config.c: Fix some compiler warnings by including the + correct bonobo headers and by using the correct bonobo types. + (config_read): Some fixes so that we can never have an empty + string as a URL. + 2001-05-10 Dan Winship * folder-browser.c (on_key_press): Don't advance to the next diff --git a/mail/mail-config.c b/mail/mail-config.c index f83efda407..ca7ed443d3 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -36,6 +36,8 @@ #include #include +#include +#include #include #include @@ -239,7 +241,7 @@ config_read (void) MailConfigIdentity *id; MailConfigService *source; MailConfigService *transport; - gchar *path; + gchar *path, *val; account = g_new0 (MailConfigAccount, 1); path = g_strdup_printf ("account_name_%d", i); @@ -252,18 +254,37 @@ config_read (void) g_free (path); path = g_strdup_printf ("account_drafts_folder_name_%d", i); - account->drafts_folder_name = gnome_config_get_string (path); + val = gnome_config_get_string (path); g_free (path); + if (val && *val) + account->drafts_folder_name = val; + else + g_free (val); + path = g_strdup_printf ("account_drafts_folder_uri_%d", i); - account->drafts_folder_uri = gnome_config_get_string (path); + val = gnome_config_get_string (path); g_free (path); + if (val && *val) + account->drafts_folder_uri = val; + else + g_free (val); + path = g_strdup_printf ("account_sent_folder_name_%d", i); - account->sent_folder_name = gnome_config_get_string (path); + val = gnome_config_get_string (path); g_free (path); + if (val && *val) + account->sent_folder_name = val; + else + g_free (val); + path = g_strdup_printf ("account_sent_folder_uri_%d", i); - account->sent_folder_uri = gnome_config_get_string (path); + val = gnome_config_get_string (path); g_free (path); - + if (val && *val) + account->sent_folder_uri = val; + else + g_free (val); + /* get the identity info */ id = g_new0 (MailConfigIdentity, 1); path = g_strdup_printf ("identity_name_%d", i); @@ -282,14 +303,12 @@ config_read (void) /* get the source */ source = g_new0 (MailConfigService, 1); path = g_strdup_printf ("source_url_%d", i); - source->url = gnome_config_get_string (path); + val = gnome_config_get_string (path); g_free (path); - - if (!*source->url) { - /* no source associated with this account */ - g_free (source->url); - source->url = NULL; - } + if (val && *val) + source->url = val; + else + g_free (val); path = g_strdup_printf ("source_keep_on_server_%d", i); source->keep_on_server = gnome_config_get_bool (path); @@ -316,19 +335,17 @@ config_read (void) /* get the transport */ transport = g_new0 (MailConfigService, 1); path = g_strdup_printf ("transport_url_%d", i); - transport->url = gnome_config_get_string (path); + val = gnome_config_get_string (path); g_free (path); + if (val && *val) + transport->url = val; + else + g_free (val); path = g_strdup_printf ("transport_save_passwd_%d", i); transport->save_passwd = gnome_config_get_bool (path); g_free (path); - if (!*transport->url) { - /* no transport associated with this account */ - g_free (transport->url); - transport->url = NULL; - } - account->id = id; account->source = source; account->transport = transport; @@ -1234,7 +1251,7 @@ BONOBO_X_TYPE_FUNC_FULL (EvolutionMailConfig, evolution_mail_config); static BonoboObject * -evolution_mail_config_factory_fn (BonoboObject *factory, +evolution_mail_config_factory_fn (BonoboGenericFactory *factory, void *closure) { EvolutionMailConfig *config; @@ -1247,8 +1264,8 @@ evolution_mail_config_factory_fn (BonoboObject *factory, void evolution_mail_config_factory_init (void) { - BonoboObject *factory; - + BonoboGenericFactory *factory; + g_warning ("Starting mail config"); factory = bonobo_generic_factory_new (MAIL_CONFIG_IID, evolution_mail_config_factory_fn, diff --git a/mail/mail-config.h b/mail/mail-config.h index 10c403389f..198e0f4cde 100644 --- a/mail/mail-config.h +++ b/mail/mail-config.h @@ -139,6 +139,10 @@ char *mail_config_folder_to_cachename (CamelFolder *folder, const char *prefix); gboolean mail_config_check_service (const char *url, CamelProviderType type, GList **authtypes); + + +void evolution_mail_config_factory_init (void); + #ifdef __cplusplus } #endif /* __cplusplus */ -- cgit v1.2.3