From: michael Date: Wed, 16 Nov 2005 11:32:58 +0000 (+0000) Subject: 2005-11-16 Michael Meeks X-Git-Tag: AT_SPI2_ATK_2_12_0~949 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git;a=commitdiff_plain;h=a2dd70ae99f4ddf5f9d30ba2b6fa98f2a7e0f5b1 2005-11-16 Michael Meeks * atk-bridge/bridge.c (spi_atk_emit_eventv): do a faster, less problematic _unref call on this local object, rather than a slower (potentially cross-thread complicated) CORBA call. git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@772 e2bd861d-eb25-0410-b326-f6ed22b6b98c --- diff --git a/ChangeLog b/ChangeLog index 465bcc4..9021d2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-11-16 Michael Meeks + + * atk-bridge/bridge.c (spi_atk_emit_eventv): + do a faster, less problematic _unref call on this local + object, rather than a slower (potentially cross-thread + complicated) CORBA call. + 2005-11-02 Kjartan Maraas * atk-bridge/bridge.c: (spi_atk_bridge_signal_listener): diff --git a/atk-bridge/bridge.c b/atk-bridge/bridge.c index 84e5a10..1c30164 100644 --- a/atk-bridge/bridge.c +++ b/atk-bridge/bridge.c @@ -661,7 +661,7 @@ spi_atk_emit_eventv (const GObject *gobject, CORBA_exception_id(&ev)); #endif if (BONOBO_EX (&ev)) registry_died = TRUE; - Accessibility_Accessible_unref (e.source, &ev); + bonobo_object_unref (BONOBO_OBJCT (source)); CORBA_exception_free (&ev);