diff options
author | Seth Alves <alves@src.gnome.org> | 2000-05-16 00:51:36 +0800 |
---|---|---|
committer | Seth Alves <alves@src.gnome.org> | 2000-05-16 00:51:36 +0800 |
commit | 98317c656590737ced646d6fb4bd65e527c7e178 (patch) | |
tree | ea05e418a95b8ee4b5e8b27e6f4c0b11bf7bc2dd /calendar/gui/evolution-calendar-control.c | |
parent | 71902b570c3e5ce5e6629b8353d3d404119e289b (diff) | |
download | gsoc2013-evolution-98317c656590737ced646d6fb4bd65e527c7e178.tar gsoc2013-evolution-98317c656590737ced646d6fb4bd65e527c7e178.tar.gz gsoc2013-evolution-98317c656590737ced646d6fb4bd65e527c7e178.tar.bz2 gsoc2013-evolution-98317c656590737ced646d6fb4bd65e527c7e178.tar.lz gsoc2013-evolution-98317c656590737ced646d6fb4bd65e527c7e178.tar.xz gsoc2013-evolution-98317c656590737ced646d6fb4bd65e527c7e178.tar.zst gsoc2013-evolution-98317c656590737ced646d6fb4bd65e527c7e178.zip |
gladeified replacement for eventedit.c
* gui/event-editor.[ch]: gladeified replacement for eventedit.c
* gui/event-editor-utils.[ch]: utilities used by event-editor.c
* gui/event-editor-dialog.glade: glade file used by event-editor.c
svn path=/trunk/; revision=3046
Diffstat (limited to 'calendar/gui/evolution-calendar-control.c')
-rw-r--r-- | calendar/gui/evolution-calendar-control.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/calendar/gui/evolution-calendar-control.c b/calendar/gui/evolution-calendar-control.c index ac0801bcc8..904e146c7c 100644 --- a/calendar/gui/evolution-calendar-control.c +++ b/calendar/gui/evolution-calendar-control.c @@ -4,6 +4,7 @@ #include <gnome.h> #include <bonobo.h> #include <bonobo/bonobo-control.h> +#include <glade/glade.h> #ifdef USING_OAF #include <liboaf/liboaf.h> @@ -61,6 +62,8 @@ 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 (); } @@ -71,7 +74,7 @@ get_prop (BonoboPropertyBag *bag, guint arg_id, gpointer user_data) { - GnomeCalendar *gcal = user_data; + /*GnomeCalendar *gcal = user_data;*/ switch (arg_id) { @@ -184,6 +187,9 @@ main (int argc, char **argv) init_calendar (); //g_log_set_always_fatal ((GLogLevelFlags) 0xFFFF); + g_log_set_always_fatal (G_LOG_LEVEL_ERROR | + G_LOG_LEVEL_CRITICAL | + G_LOG_LEVEL_WARNING); CORBA_exception_init (&ev); |