diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-06-14 16:20:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-06-14 20:55:15 +0100 |
commit | 61a80d121d96cf9f02b24f3f1984374c71b7579b (patch) | |
tree | 1bd1a596398e64b57ecdbfe1a16fea9ae0c07297 /vcl/unx/gtk/a11y | |
parent | 9f0997eb167d0ef2193a59d43ab55ea5f13ebaac (diff) |
silence warning about unknown ACTIVE_DESCENDANT_CHANGED_NOFOCUS
Change-Id: If0c1461b4c74b0b7eb17d47c61d13df3230d4b44
Diffstat (limited to 'vcl/unx/gtk/a11y')
-rw-r--r-- | vcl/unx/gtk/a11y/atklistener.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/unx/gtk/a11y/atklistener.cxx b/vcl/unx/gtk/a11y/atklistener.cxx index 053138ebd202..fa6826ffe738 100644 --- a/vcl/unx/gtk/a11y/atklistener.cxx +++ b/vcl/unx/gtk/a11y/atklistener.cxx @@ -378,6 +378,12 @@ void AtkListener::notifyEvent( const accessibility::AccessibleEventObject& aEven break; } + //ACTIVE_DESCENDANT_CHANGED_NOFOCUS (sic) appears to have been added + //as a workaround or an aid for the ia2 winaccessibility implementation + //so ignore it silently without warning here + case accessibility::AccessibleEventId::ACTIVE_DESCENDANT_CHANGED_NOFOCUS: + break; + // #i92103# case accessibility::AccessibleEventId::LISTBOX_ENTRY_EXPANDED: { |