diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-05-26 01:43:31 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-05-26 01:43:31 +0800 |
commit | ff224ac819812b4ac9707083ebcd25889e6d7ec4 (patch) | |
tree | c3b8e7e82015ae4259dc27e0068d96c224cc7b8c /calendar/gui/main.c | |
parent | a979df3778682adb6f90ef3477e62fc077a8e9b8 (diff) | |
download | gsoc2013-evolution-ff224ac819812b4ac9707083ebcd25889e6d7ec4.tar gsoc2013-evolution-ff224ac819812b4ac9707083ebcd25889e6d7ec4.tar.gz gsoc2013-evolution-ff224ac819812b4ac9707083ebcd25889e6d7ec4.tar.bz2 gsoc2013-evolution-ff224ac819812b4ac9707083ebcd25889e6d7ec4.tar.lz gsoc2013-evolution-ff224ac819812b4ac9707083ebcd25889e6d7ec4.tar.xz gsoc2013-evolution-ff224ac819812b4ac9707083ebcd25889e6d7ec4.tar.zst gsoc2013-evolution-ff224ac819812b4ac9707083ebcd25889e6d7ec4.zip |
Do not initialize libglade twice.
2000-05-25 Federico Mena Quintero <federico@helixcode.com>
* gui/main.c (init_bonobo): Do not initialize libglade twice.
* gui/component-factory.c (create_view): Set the folder_uri
property, otherwise the calendar will not get loaded into the
view.
svn path=/trunk/; revision=3203
Diffstat (limited to 'calendar/gui/main.c')
-rw-r--r-- | calendar/gui/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/main.c b/calendar/gui/main.c index 06254420cc..2b3f3ac762 100644 --- a/calendar/gui/main.c +++ b/calendar/gui/main.c @@ -42,6 +42,8 @@ #include <gui/eventedit.h> #include <gui/gnome-cal.h> #include <gui/calendar-commands.h> +#include "component-factory.h" +#include "control-factory.h" static void @@ -65,8 +67,6 @@ 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")); - - glade_gnome_init (); } |