pkgsrc/devel/at-spi2-core/PLIST

155 lines
6.9 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.14 2017/11/23 15:16:39 wiz Exp $
include/at-spi-2.0/atspi/atspi-accessible.h
include/at-spi-2.0/atspi/atspi-action.h
include/at-spi-2.0/atspi/atspi-application.h
include/at-spi-2.0/atspi/atspi-collection.h
include/at-spi-2.0/atspi/atspi-component.h
include/at-spi-2.0/atspi/atspi-constants.h
include/at-spi-2.0/atspi/atspi-device-listener-private.h
include/at-spi-2.0/atspi/atspi-device-listener.h
include/at-spi-2.0/atspi/atspi-document.h
include/at-spi-2.0/atspi/atspi-editabletext.h
Update at-spi2-core to 2.10.2 * Fix atspi_component_contains (BGO#710730). * Hopefully fix a crash when unable to register with the session manager (BGO#710689). * Fix a leak introduced in 2.9.92 that adversely affected performance (BGO#709625). * Fix multiple deadlocks with keystroke listeners (BGO#707218). * Fix a performance issue when running for a long time without a main loop, such as with a dogtail script (BGO#701145). * Remove an unneeded unref that was causing a warning (BGO#706893). * Skip some functions that were not introspectable (BGO#707010). * Separate out X-dependent functionality, allow building without X11 (albeit with various things not working), and don't query/use X if DISPLAY is not set (BGO#682199, BGO#701378). * Add atspi_text_get_string_at_offset, and deprecate atspi_text_get_text_at_offset. * Fix possible memory leak when D-Bus calls time out. * Fix a memory leak in atspi_accessible_get_role_name that was introduced earlier in the 2.9 cycle with the enum refactor. * A couple of functions not intended for introspection are now marked as skip. * Add atspi_set_main_context (mainly for use by at-spi2-atk). * Add atspi_is_initialized (BGO#681276). * Fix D-Bus introspection for GetActions. * Use glib-mkenums to generate enum types, and use these generated types for role and state names, rather than static tables. * Annotate filter in atspi_register_device_event_listener with allow-none (BGO#700237). * Rename various functions to avoid name collisions (BGO#700243). The old functions are deprecated in favor of the renamed functions and renamed for introspection.
2013-12-08 14:40:20 +01:00
include/at-spi-2.0/atspi/atspi-enum-types.h
include/at-spi-2.0/atspi/atspi-event-listener-private.h
include/at-spi-2.0/atspi/atspi-event-listener.h
include/at-spi-2.0/atspi/atspi-gmain.h
include/at-spi-2.0/atspi/atspi-hyperlink.h
include/at-spi-2.0/atspi/atspi-hypertext.h
include/at-spi-2.0/atspi/atspi-image.h
include/at-spi-2.0/atspi/atspi-matchrule.h
include/at-spi-2.0/atspi/atspi-misc.h
include/at-spi-2.0/atspi/atspi-object.h
include/at-spi-2.0/atspi/atspi-private.h
include/at-spi-2.0/atspi/atspi-registry.h
include/at-spi-2.0/atspi/atspi-relation.h
include/at-spi-2.0/atspi/atspi-selection.h
include/at-spi-2.0/atspi/atspi-stateset.h
include/at-spi-2.0/atspi/atspi-table-cell.h
include/at-spi-2.0/atspi/atspi-table.h
include/at-spi-2.0/atspi/atspi-text.h
include/at-spi-2.0/atspi/atspi-types.h
include/at-spi-2.0/atspi/atspi-value.h
include/at-spi-2.0/atspi/atspi.h
Update at-spi2-core from 2.3.5 -> 2.5.2 2.5.2: * Fix a crash when a call to fetch a hyperlink times out. * Fix C++ compilation. * Remove a warning that was sometimes logged when a method call timed out. * Fix crash in atspi_deregister_keystroke_listener (FDO#50578) 2.5.1: * Add atspi_set_timeout. * By default, disable method call timeouts until an application has been on the bus for 15 seconds (work-around for applications with potentially long start-up times). This behavior can be changed with a call to atspi_set_timeout. * Fix GError sent when receiving a reply of the wrong type * Fix typo in atspi_document_get_attribute_value * Fix for bug 675004 - object:state-changed:defunct events are emitted as object:state-change:defunct 2.4.0: * Fix typo in at-spi-dbus-bus.desktop.in (BGO#605662). 2.3.92: * Some changes to try to prevent at-spi2-registryd from incorrectly thinking that an AT is hung and passing keys meant for it to the application. * Fix crash fetching an error from a reply when retrieving a property. 2.3.91: * Invalidate states when receiving a focus event (BGO#663992). * Fix atspi_table_get_row_column_extents_at_index. * Expect a signed int for GetIndexInParent, per the spec. * Send key events to listeners assumed to be hung, but don't block. * Reduce the method call timeout slightly, so that it will be lower than the keystroke listener timeout. * Don't cache data for transient objects. * Enable caching on a call to atspi_accessible_set_cache_mask, even if atspi-event_main() hasn't been called. 2.3.90: * At-spi-bus-launcher now emits PropertiesChanged signals from the correct interface. * If a keystroke listener does not respond, disable it until it responds. This prevents the desktop from locking up if an AT hangs or is suspended and has a keyboard listener registered. * Fix a warning when a NULL object is returned as the detail of an event.
2012-06-12 19:16:13 +02:00
lib/girepository-1.0/Atspi-2.0.typelib
lib/libatspi.la
lib/pkgconfig/atspi-2.pc
lib/systemd/user/at-spi-dbus-bus.service
libexec/at-spi-bus-launcher
libexec/at-spi2-registryd
share/dbus-1/accessibility-services/org.a11y.atspi.Registry.service
share/dbus-1/services/org.a11y.Bus.service
share/examples/at-spi2-core/at-spi2/accessibility.conf
share/examples/at-spi2-core/xdg/autostart/at-spi-dbus-bus.desktop
Update at-spi2-core from 2.3.5 -> 2.5.2 2.5.2: * Fix a crash when a call to fetch a hyperlink times out. * Fix C++ compilation. * Remove a warning that was sometimes logged when a method call timed out. * Fix crash in atspi_deregister_keystroke_listener (FDO#50578) 2.5.1: * Add atspi_set_timeout. * By default, disable method call timeouts until an application has been on the bus for 15 seconds (work-around for applications with potentially long start-up times). This behavior can be changed with a call to atspi_set_timeout. * Fix GError sent when receiving a reply of the wrong type * Fix typo in atspi_document_get_attribute_value * Fix for bug 675004 - object:state-changed:defunct events are emitted as object:state-change:defunct 2.4.0: * Fix typo in at-spi-dbus-bus.desktop.in (BGO#605662). 2.3.92: * Some changes to try to prevent at-spi2-registryd from incorrectly thinking that an AT is hung and passing keys meant for it to the application. * Fix crash fetching an error from a reply when retrieving a property. 2.3.91: * Invalidate states when receiving a focus event (BGO#663992). * Fix atspi_table_get_row_column_extents_at_index. * Expect a signed int for GetIndexInParent, per the spec. * Send key events to listeners assumed to be hung, but don't block. * Reduce the method call timeout slightly, so that it will be lower than the keystroke listener timeout. * Don't cache data for transient objects. * Enable caching on a call to atspi_accessible_set_cache_mask, even if atspi-event_main() hasn't been called. 2.3.90: * At-spi-bus-launcher now emits PropertiesChanged signals from the correct interface. * If a keystroke listener does not respond, disable it until it responds. This prevents the desktop from locking up if an AT hangs or is suspended and has a keyboard listener registered. * Fix a warning when a NULL object is returned as the detail of an event.
2012-06-12 19:16:13 +02:00
share/gir-1.0/Atspi-2.0.gir
share/gtk-doc/html/libatspi/AtspiAccessible.html
share/gtk-doc/html/libatspi/AtspiDeviceListener.html
share/gtk-doc/html/libatspi/AtspiEventListener.html
share/gtk-doc/html/libatspi/AtspiHyperlink.html
share/gtk-doc/html/libatspi/AtspiMatchRule.html
share/gtk-doc/html/libatspi/AtspiObject.html
share/gtk-doc/html/libatspi/AtspiRelation.html
share/gtk-doc/html/libatspi/AtspiStateSet.html
share/gtk-doc/html/libatspi/annotation-glossary.html
share/gtk-doc/html/libatspi/api-index-full.html
share/gtk-doc/html/libatspi/ch01.html
share/gtk-doc/html/libatspi/home.png
share/gtk-doc/html/libatspi/index.html
share/gtk-doc/html/libatspi/left-insensitive.png
share/gtk-doc/html/libatspi/left.png
share/gtk-doc/html/libatspi/libatspi-AtspiApplication.html
share/gtk-doc/html/libatspi/libatspi-atspi-action.html
share/gtk-doc/html/libatspi/libatspi-atspi-collection.html
share/gtk-doc/html/libatspi/libatspi-atspi-component.html
share/gtk-doc/html/libatspi/libatspi-atspi-constants.html
share/gtk-doc/html/libatspi/libatspi-atspi-document.html
share/gtk-doc/html/libatspi/libatspi-atspi-editabletext.html
share/gtk-doc/html/libatspi/libatspi-atspi-hypertext.html
share/gtk-doc/html/libatspi/libatspi-atspi-image.html
share/gtk-doc/html/libatspi/libatspi-atspi-listener-private.html
share/gtk-doc/html/libatspi/libatspi-atspi-misc-private.html
share/gtk-doc/html/libatspi/libatspi-atspi-misc.html
share/gtk-doc/html/libatspi/libatspi-atspi-registry.html
share/gtk-doc/html/libatspi/libatspi-atspi-selection.html
share/gtk-doc/html/libatspi/libatspi-atspi-table-cell.html
share/gtk-doc/html/libatspi/libatspi-atspi-table.html
share/gtk-doc/html/libatspi/libatspi-atspi-text.html
share/gtk-doc/html/libatspi/libatspi-atspi-types.html
share/gtk-doc/html/libatspi/libatspi-atspi-value.html
share/gtk-doc/html/libatspi/object-tree.html
share/gtk-doc/html/libatspi/right-insensitive.png
share/gtk-doc/html/libatspi/right.png
share/gtk-doc/html/libatspi/style.css
share/gtk-doc/html/libatspi/up-insensitive.png
share/gtk-doc/html/libatspi/up.png
share/locale/an/LC_MESSAGES/at-spi2-core.mo
share/locale/as/LC_MESSAGES/at-spi2-core.mo
share/locale/ast/LC_MESSAGES/at-spi2-core.mo
share/locale/be/LC_MESSAGES/at-spi2-core.mo
share/locale/bg/LC_MESSAGES/at-spi2-core.mo
share/locale/bn_IN/LC_MESSAGES/at-spi2-core.mo
share/locale/bs/LC_MESSAGES/at-spi2-core.mo
share/locale/ca/LC_MESSAGES/at-spi2-core.mo
share/locale/ca@valencia/LC_MESSAGES/at-spi2-core.mo
share/locale/cs/LC_MESSAGES/at-spi2-core.mo
share/locale/da/LC_MESSAGES/at-spi2-core.mo
share/locale/de/LC_MESSAGES/at-spi2-core.mo
share/locale/el/LC_MESSAGES/at-spi2-core.mo
share/locale/en_CA/LC_MESSAGES/at-spi2-core.mo
share/locale/en_GB/LC_MESSAGES/at-spi2-core.mo
share/locale/eo/LC_MESSAGES/at-spi2-core.mo
share/locale/es/LC_MESSAGES/at-spi2-core.mo
Update at-spi2-core from 2.3.5 -> 2.5.2 2.5.2: * Fix a crash when a call to fetch a hyperlink times out. * Fix C++ compilation. * Remove a warning that was sometimes logged when a method call timed out. * Fix crash in atspi_deregister_keystroke_listener (FDO#50578) 2.5.1: * Add atspi_set_timeout. * By default, disable method call timeouts until an application has been on the bus for 15 seconds (work-around for applications with potentially long start-up times). This behavior can be changed with a call to atspi_set_timeout. * Fix GError sent when receiving a reply of the wrong type * Fix typo in atspi_document_get_attribute_value * Fix for bug 675004 - object:state-changed:defunct events are emitted as object:state-change:defunct 2.4.0: * Fix typo in at-spi-dbus-bus.desktop.in (BGO#605662). 2.3.92: * Some changes to try to prevent at-spi2-registryd from incorrectly thinking that an AT is hung and passing keys meant for it to the application. * Fix crash fetching an error from a reply when retrieving a property. 2.3.91: * Invalidate states when receiving a focus event (BGO#663992). * Fix atspi_table_get_row_column_extents_at_index. * Expect a signed int for GetIndexInParent, per the spec. * Send key events to listeners assumed to be hung, but don't block. * Reduce the method call timeout slightly, so that it will be lower than the keystroke listener timeout. * Don't cache data for transient objects. * Enable caching on a call to atspi_accessible_set_cache_mask, even if atspi-event_main() hasn't been called. 2.3.90: * At-spi-bus-launcher now emits PropertiesChanged signals from the correct interface. * If a keystroke listener does not respond, disable it until it responds. This prevents the desktop from locking up if an AT hangs or is suspended and has a keyboard listener registered. * Fix a warning when a NULL object is returned as the detail of an event.
2012-06-12 19:16:13 +02:00
share/locale/et/LC_MESSAGES/at-spi2-core.mo
share/locale/eu/LC_MESSAGES/at-spi2-core.mo
share/locale/fa/LC_MESSAGES/at-spi2-core.mo
share/locale/fi/LC_MESSAGES/at-spi2-core.mo
share/locale/fr/LC_MESSAGES/at-spi2-core.mo
Update at-spi2-core to 2.10.2 * Fix atspi_component_contains (BGO#710730). * Hopefully fix a crash when unable to register with the session manager (BGO#710689). * Fix a leak introduced in 2.9.92 that adversely affected performance (BGO#709625). * Fix multiple deadlocks with keystroke listeners (BGO#707218). * Fix a performance issue when running for a long time without a main loop, such as with a dogtail script (BGO#701145). * Remove an unneeded unref that was causing a warning (BGO#706893). * Skip some functions that were not introspectable (BGO#707010). * Separate out X-dependent functionality, allow building without X11 (albeit with various things not working), and don't query/use X if DISPLAY is not set (BGO#682199, BGO#701378). * Add atspi_text_get_string_at_offset, and deprecate atspi_text_get_text_at_offset. * Fix possible memory leak when D-Bus calls time out. * Fix a memory leak in atspi_accessible_get_role_name that was introduced earlier in the 2.9 cycle with the enum refactor. * A couple of functions not intended for introspection are now marked as skip. * Add atspi_set_main_context (mainly for use by at-spi2-atk). * Add atspi_is_initialized (BGO#681276). * Fix D-Bus introspection for GetActions. * Use glib-mkenums to generate enum types, and use these generated types for role and state names, rather than static tables. * Annotate filter in atspi_register_device_event_listener with allow-none (BGO#700237). * Rename various functions to avoid name collisions (BGO#700243). The old functions are deprecated in favor of the renamed functions and renamed for introspection.
2013-12-08 14:40:20 +01:00
share/locale/fur/LC_MESSAGES/at-spi2-core.mo
share/locale/ga/LC_MESSAGES/at-spi2-core.mo
share/locale/gd/LC_MESSAGES/at-spi2-core.mo
share/locale/gl/LC_MESSAGES/at-spi2-core.mo
share/locale/gu/LC_MESSAGES/at-spi2-core.mo
share/locale/he/LC_MESSAGES/at-spi2-core.mo
share/locale/hi/LC_MESSAGES/at-spi2-core.mo
share/locale/hr/LC_MESSAGES/at-spi2-core.mo
share/locale/hu/LC_MESSAGES/at-spi2-core.mo
share/locale/id/LC_MESSAGES/at-spi2-core.mo
share/locale/it/LC_MESSAGES/at-spi2-core.mo
share/locale/ja/LC_MESSAGES/at-spi2-core.mo
share/locale/kk/LC_MESSAGES/at-spi2-core.mo
Update at-spi2-core from 2.3.5 -> 2.5.2 2.5.2: * Fix a crash when a call to fetch a hyperlink times out. * Fix C++ compilation. * Remove a warning that was sometimes logged when a method call timed out. * Fix crash in atspi_deregister_keystroke_listener (FDO#50578) 2.5.1: * Add atspi_set_timeout. * By default, disable method call timeouts until an application has been on the bus for 15 seconds (work-around for applications with potentially long start-up times). This behavior can be changed with a call to atspi_set_timeout. * Fix GError sent when receiving a reply of the wrong type * Fix typo in atspi_document_get_attribute_value * Fix for bug 675004 - object:state-changed:defunct events are emitted as object:state-change:defunct 2.4.0: * Fix typo in at-spi-dbus-bus.desktop.in (BGO#605662). 2.3.92: * Some changes to try to prevent at-spi2-registryd from incorrectly thinking that an AT is hung and passing keys meant for it to the application. * Fix crash fetching an error from a reply when retrieving a property. 2.3.91: * Invalidate states when receiving a focus event (BGO#663992). * Fix atspi_table_get_row_column_extents_at_index. * Expect a signed int for GetIndexInParent, per the spec. * Send key events to listeners assumed to be hung, but don't block. * Reduce the method call timeout slightly, so that it will be lower than the keystroke listener timeout. * Don't cache data for transient objects. * Enable caching on a call to atspi_accessible_set_cache_mask, even if atspi-event_main() hasn't been called. 2.3.90: * At-spi-bus-launcher now emits PropertiesChanged signals from the correct interface. * If a keystroke listener does not respond, disable it until it responds. This prevents the desktop from locking up if an AT hangs or is suspended and has a keyboard listener registered. * Fix a warning when a NULL object is returned as the detail of an event.
2012-06-12 19:16:13 +02:00
share/locale/km/LC_MESSAGES/at-spi2-core.mo
share/locale/kn/LC_MESSAGES/at-spi2-core.mo
share/locale/ko/LC_MESSAGES/at-spi2-core.mo
share/locale/lt/LC_MESSAGES/at-spi2-core.mo
share/locale/lv/LC_MESSAGES/at-spi2-core.mo
Update at-spi2-core from 2.3.5 -> 2.5.2 2.5.2: * Fix a crash when a call to fetch a hyperlink times out. * Fix C++ compilation. * Remove a warning that was sometimes logged when a method call timed out. * Fix crash in atspi_deregister_keystroke_listener (FDO#50578) 2.5.1: * Add atspi_set_timeout. * By default, disable method call timeouts until an application has been on the bus for 15 seconds (work-around for applications with potentially long start-up times). This behavior can be changed with a call to atspi_set_timeout. * Fix GError sent when receiving a reply of the wrong type * Fix typo in atspi_document_get_attribute_value * Fix for bug 675004 - object:state-changed:defunct events are emitted as object:state-change:defunct 2.4.0: * Fix typo in at-spi-dbus-bus.desktop.in (BGO#605662). 2.3.92: * Some changes to try to prevent at-spi2-registryd from incorrectly thinking that an AT is hung and passing keys meant for it to the application. * Fix crash fetching an error from a reply when retrieving a property. 2.3.91: * Invalidate states when receiving a focus event (BGO#663992). * Fix atspi_table_get_row_column_extents_at_index. * Expect a signed int for GetIndexInParent, per the spec. * Send key events to listeners assumed to be hung, but don't block. * Reduce the method call timeout slightly, so that it will be lower than the keystroke listener timeout. * Don't cache data for transient objects. * Enable caching on a call to atspi_accessible_set_cache_mask, even if atspi-event_main() hasn't been called. 2.3.90: * At-spi-bus-launcher now emits PropertiesChanged signals from the correct interface. * If a keystroke listener does not respond, disable it until it responds. This prevents the desktop from locking up if an AT hangs or is suspended and has a keyboard listener registered. * Fix a warning when a NULL object is returned as the detail of an event.
2012-06-12 19:16:13 +02:00
share/locale/ml/LC_MESSAGES/at-spi2-core.mo
share/locale/mr/LC_MESSAGES/at-spi2-core.mo
share/locale/ms/LC_MESSAGES/at-spi2-core.mo
share/locale/nb/LC_MESSAGES/at-spi2-core.mo
Update at-spi2-core to 2.25.91 This has several fixes which aren't in the "stable" 2.24.1 What's new in at-spi2-core 2.25.91: * Meson builds should now be usable. What's new in at-spi2-core 2.25.90: * Fix a couple of introspection issues (bgo#784481). * atspi_get_a11_bus: don't leak the DBusConnection. * Meson fixes. What's new in at-spi2-core 2.25.4: * Fix gir generation with autotools (bgo#783994). What's new in at-spi2-core 2.25.3: * Fix -Wmisleading-indentation warnings. * Fix memory leak of at-spi-bus-launcher. * Add error-message, error-for, details, and details-for relation types. * Poll direct dbus connections in the main loop--fixes processes being marked hung and the hung flag never being removed. * Add Meson build system (thanks to Emmanuele Bassi). * Various build fixes (thanks to Emmanuele Bassi). What's new in at-spi2-core 2.25.2: * attempt to fix an occasional crash when an application disappears (bgo#767074). * Add some missing roles to correspond with atk (description list, description term, description value, and footnote). What's new in at-spi2-core 2.25.1: * atspi_table_cell_get_position: don't crash on error. What's new in at-spi2-core 2.23.92: * Table cell API fixes (bgo#779835). What's new in at-spi2-core 2.23.90: * Fix an occasional crash when an application is closed (bgo#767074). What's new in at-spi2-core 2.23.4: * Don't pull in X headers if x11 is disabled (bgo#773710). * at-spi-bus-launcher: session management fixes (bgo#774441). * events: add recently added page changed event (bgo#719898). * roles: EXTENDED roles are deprecated (bgo#W720123).
2017-08-25 14:17:00 +02:00
share/locale/ne/LC_MESSAGES/at-spi2-core.mo
share/locale/nl/LC_MESSAGES/at-spi2-core.mo
share/locale/oc/LC_MESSAGES/at-spi2-core.mo
share/locale/or/LC_MESSAGES/at-spi2-core.mo
share/locale/pa/LC_MESSAGES/at-spi2-core.mo
share/locale/pl/LC_MESSAGES/at-spi2-core.mo
share/locale/pt/LC_MESSAGES/at-spi2-core.mo
share/locale/pt_BR/LC_MESSAGES/at-spi2-core.mo
share/locale/ro/LC_MESSAGES/at-spi2-core.mo
share/locale/ru/LC_MESSAGES/at-spi2-core.mo
share/locale/sk/LC_MESSAGES/at-spi2-core.mo
share/locale/sl/LC_MESSAGES/at-spi2-core.mo
share/locale/sq/LC_MESSAGES/at-spi2-core.mo
share/locale/sr/LC_MESSAGES/at-spi2-core.mo
share/locale/sr@latin/LC_MESSAGES/at-spi2-core.mo
share/locale/sv/LC_MESSAGES/at-spi2-core.mo
share/locale/ta/LC_MESSAGES/at-spi2-core.mo
share/locale/te/LC_MESSAGES/at-spi2-core.mo
share/locale/tg/LC_MESSAGES/at-spi2-core.mo
share/locale/tr/LC_MESSAGES/at-spi2-core.mo
share/locale/ug/LC_MESSAGES/at-spi2-core.mo
share/locale/uk/LC_MESSAGES/at-spi2-core.mo
Update at-spi2-core from 2.3.5 -> 2.5.2 2.5.2: * Fix a crash when a call to fetch a hyperlink times out. * Fix C++ compilation. * Remove a warning that was sometimes logged when a method call timed out. * Fix crash in atspi_deregister_keystroke_listener (FDO#50578) 2.5.1: * Add atspi_set_timeout. * By default, disable method call timeouts until an application has been on the bus for 15 seconds (work-around for applications with potentially long start-up times). This behavior can be changed with a call to atspi_set_timeout. * Fix GError sent when receiving a reply of the wrong type * Fix typo in atspi_document_get_attribute_value * Fix for bug 675004 - object:state-changed:defunct events are emitted as object:state-change:defunct 2.4.0: * Fix typo in at-spi-dbus-bus.desktop.in (BGO#605662). 2.3.92: * Some changes to try to prevent at-spi2-registryd from incorrectly thinking that an AT is hung and passing keys meant for it to the application. * Fix crash fetching an error from a reply when retrieving a property. 2.3.91: * Invalidate states when receiving a focus event (BGO#663992). * Fix atspi_table_get_row_column_extents_at_index. * Expect a signed int for GetIndexInParent, per the spec. * Send key events to listeners assumed to be hung, but don't block. * Reduce the method call timeout slightly, so that it will be lower than the keystroke listener timeout. * Don't cache data for transient objects. * Enable caching on a call to atspi_accessible_set_cache_mask, even if atspi-event_main() hasn't been called. 2.3.90: * At-spi-bus-launcher now emits PropertiesChanged signals from the correct interface. * If a keystroke listener does not respond, disable it until it responds. This prevents the desktop from locking up if an AT hangs or is suspended and has a keyboard listener registered. * Fix a warning when a NULL object is returned as the detail of an event.
2012-06-12 19:16:13 +02:00
share/locale/uz@cyrillic/LC_MESSAGES/at-spi2-core.mo
share/locale/vi/LC_MESSAGES/at-spi2-core.mo
share/locale/zh_CN/LC_MESSAGES/at-spi2-core.mo
share/locale/zh_HK/LC_MESSAGES/at-spi2-core.mo
share/locale/zh_TW/LC_MESSAGES/at-spi2-core.mo