diff options
author | JP Rosevear <jpr@ximian.com> | 2002-07-01 22:31:58 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2002-07-01 22:31:58 +0800 |
commit | 56867f3fe28668dc013dd2f54703ddb7affdbc48 (patch) | |
tree | 60326865cd3e6a31f8a37932184e0d72cea236e9 /calendar/gui/main.c | |
parent | 9fd05c275495a4b3b60309466ee927ead3a8e9ef (diff) | |
download | gsoc2013-evolution-56867f3fe28668dc013dd2f54703ddb7affdbc48.tar.gz gsoc2013-evolution-56867f3fe28668dc013dd2f54703ddb7affdbc48.tar.zst gsoc2013-evolution-56867f3fe28668dc013dd2f54703ddb7affdbc48.zip |
listen for timezone config change (property_change_cb): set the timezone
2002-07-01 JP Rosevear <jpr@ximian.com>
* gui/calendar-config.c (config_read): listen for timezone config
change
(property_change_cb): set the timezone if it changed elsewhere
* gui/main.c (init_bonobo): call bonobo_activate because we make
bonobo related calls before the bonobo_main call
svn path=/trunk/; revision=17335
Diffstat (limited to 'calendar/gui/main.c')
-rw-r--r-- | calendar/gui/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/main.c b/calendar/gui/main.c index b9b504826b..e00ea7a1e7 100644 --- a/calendar/gui/main.c +++ b/calendar/gui/main.c @@ -65,6 +65,9 @@ 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")); + + if (!bonobo_activate ()) + g_error (_("Could not activate Bonobo")); } /* Factory function for the calendar component factory; just creates and |