aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorJP Rosevear <jpr@helixcode.com>2000-08-04 22:58:43 +0800
committerJP Rosevear <jpr@src.gnome.org>2000-08-04 22:58:43 +0800
commit09e1677c54c2620fe31cefcf18e869beaccba8f3 (patch)
treeefaf5fa560e8f3f3f4387cbe6311508862c427e3 /mail
parent660a75cc995f416ecc018b6ee278582651240631 (diff)
downloadgsoc2013-evolution-09e1677c54c2620fe31cefcf18e869beaccba8f3.tar
gsoc2013-evolution-09e1677c54c2620fe31cefcf18e869beaccba8f3.tar.gz
gsoc2013-evolution-09e1677c54c2620fe31cefcf18e869beaccba8f3.tar.bz2
gsoc2013-evolution-09e1677c54c2620fe31cefcf18e869beaccba8f3.tar.lz
gsoc2013-evolution-09e1677c54c2620fe31cefcf18e869beaccba8f3.tar.xz
gsoc2013-evolution-09e1677c54c2620fe31cefcf18e869beaccba8f3.tar.zst
gsoc2013-evolution-09e1677c54c2620fe31cefcf18e869beaccba8f3.zip
Actually commit this - I though it went in already.
2000-08-03 JP Rosevear <jpr@helixcode.com> * configure.in: Remove gconf check 2000-08-03 JP Rosevear <jpr@helixcode.com> * mail-config.glade: Increase window size slightly, rename "Transport" to "Mail Transport" * mail-config.c (init_config): Remove gconf references (clear_config): ditto (read_config): ditto (write_config): ditto (mail_config): Null provider lists before filling them (mail_config_druid): ditto (identity_page_new): Increase spacing of vbox (service_page_new): ditto * Makefile.am: Remove gconf references. 2000-08-03 JP Rosevear <jpr@helixcode.com> * e-shell.h: Remove gconf references * e-shell-view.h: Remove gconf references * main.c (idle_cb): Remove gconf references * Makefile.am: Remove gconf cflags and libs * e-shell-view.c (e_shell_view_load_settings): Change to use gnome-config (e_shell_view_save_settings): ditto * e-shell.c (e_shell_restore_from_settings): Change to use gnome_config (save_settings_for_views): ditto svn path=/trunk/; revision=4530
Diffstat (limited to 'mail')
-rw-r--r--mail/mail-config.c8
-rw-r--r--mail/main.c1
2 files changed, 5 insertions, 4 deletions
diff --git a/mail/mail-config.c b/mail/mail-config.c
index 9fcfbd20ec..bb03b65225 100644
--- a/mail/mail-config.c
+++ b/mail/mail-config.c
@@ -1,3 +1,4 @@
+
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* mail-config.c: Mail configuration dialogs/wizard. */
@@ -468,8 +469,7 @@ read_config ()
clear_config ();
/* Configured */
- str = g_strdup_printf ("=%s/config/General=/General/configured",
- evolution_dir);
+ str = g_strdup_printf ("=%s/config/General=/General/configured", evolution_dir);
config->configured = gnome_config_get_bool (str);
g_free (str);
@@ -1762,7 +1762,7 @@ mail_config_druid (void)
GnomeDruidPageStart *spage;
GnomeDruidPageFinish *fpage;
GnomeDruidPageStandard *dpage;
- GSList *sources=NULL, *news=NULL, *transports=NULL;
+ GSList *sources, *news, *transports;
GdkImlibImage *mail_logo, *identity_logo;
GdkImlibImage *source_logo, *transport_logo;
@@ -2137,7 +2137,7 @@ mail_config (void)
GladeXML *gui;
GtkCList *clist;
GtkWidget *button, *tvbox;
- GSList *sources = NULL, *news = NULL, *transports = NULL;
+ GSList *sources, *news, *transports;
gint len, row;
read_config ();
diff --git a/mail/main.c b/mail/main.c
index ff4a475716..5c0bb0e410 100644
--- a/mail/main.c
+++ b/mail/main.c
@@ -50,6 +50,7 @@ main (int argc, char *argv [])
#ifdef GTKHTML_HAVE_GCONF
gconf_init (argc, argv, NULL);
#endif
+
glade_gnome_init ();
session_init ();