diff options
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/addressbook-factory.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/addressbook/gui/component/addressbook-factory.c b/addressbook/gui/component/addressbook-factory.c index b4012f4223..6a5e79066a 100644 --- a/addressbook/gui/component/addressbook-factory.c +++ b/addressbook/gui/component/addressbook-factory.c @@ -18,6 +18,10 @@ #include <glade/glade.h> #include <gal/widgets/e-cursors.h> +#ifdef GTKHTML_HAVE_GCONF +#include <gconf/gconf.h> +#endif + #include "addressbook.h" #include "addressbook-component.h" #include "e-address-widget.h" @@ -41,6 +45,10 @@ init_bonobo (int argc, char **argv) if (bonobo_init (CORBA_OBJECT_NIL, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE) g_error (_("Could not initialize Bonobo")); +#ifdef GTKHTML_HAVE_GCONF + gconf_init (argc, argv, NULL); +#endif + glade_gnome_init (); } |