From: liyuan Date: Mon, 31 Mar 2008 06:45:10 +0000 (+0000) Subject: 2008-03-31 Li Yuan X-Git-Tag: AT_SPI2_CORE_0_1_3~306 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1549eff5b0fda58d3684a4a01953a2c9892f59f5;p=platform%2Fupstream%2Fat-spi2-core.git 2008-03-31 Li Yuan * atk-bridge/bridge.c: (atk_bridge_init), (spi_atk_bridge_do_registration): Bug #498668. Call bonobo_activate at the beginning of the initialization. git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@1004 e2bd861d-eb25-0410-b326-f6ed22b6b98c --- diff --git a/ChangeLog b/ChangeLog index da1f2e0..bd359bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-03-31 Li Yuan + + * atk-bridge/bridge.c: (atk_bridge_init), + (spi_atk_bridge_do_registration): + Bug #498668. Call bonobo_activate at the beginning of the + initialization. + 2008-03-19 Li Yuan * idl/Accessibility_Accessible.idl: diff --git a/atk-bridge/bridge.c b/atk-bridge/bridge.c index 4415a80..7a3362a 100644 --- a/atk-bridge/bridge.c +++ b/atk-bridge/bridge.c @@ -217,6 +217,8 @@ atk_bridge_init (gint *argc, gchar **argv[]) g_error ("Could not initialize Bonobo"); } + bonobo_activate (); + /* Create the accessible application server object */ this_app = spi_application_new (atk_get_root ()); /* @@ -275,8 +277,6 @@ spi_atk_bridge_do_registration (void) return FALSE; } - bonobo_activate (); - /* Create the accessible application server object */ if (this_app == NULL) this_app = spi_application_new (atk_get_root ());