diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-05-17 12:35:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-05-17 12:36:15 +0100 |
commit | 0defd98b5995a27117023c289d628a6efbc5d2cc (patch) | |
tree | cb962e321aaac212f7ca5cd16e38ac05449be8b1 | |
parent | 47bf48a035f768689b92a977caffbd312f6a2a5d (diff) |
The other Invalidate is a OSL_TRACE, so silence here likewise
Change-Id: Ib7e7d53e8feb378229a71985bb6108ce9b58cb29
-rw-r--r-- | vcl/unx/gtk/a11y/atkutil.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/vcl/unx/gtk/a11y/atkutil.cxx b/vcl/unx/gtk/a11y/atkutil.cxx index 9b5bbd0ca674..d722936bf755 100644 --- a/vcl/unx/gtk/a11y/atkutil.cxx +++ b/vcl/unx/gtk/a11y/atkutil.cxx @@ -199,8 +199,9 @@ void DocumentFocusListener::notifyEvent( const accessibility::AccessibleEventObj if( accessibility::AccessibleStateType::FOCUSED == nState ) atk_wrapper_focus_tracker_notify_when_idle( getAccessible(aEvent) ); + + break; } - break; case accessibility::AccessibleEventId::CHILD: { @@ -210,12 +211,13 @@ void DocumentFocusListener::notifyEvent( const accessibility::AccessibleEventObj if( (aEvent.NewValue >>= xChild) && xChild.is() ) attachRecursive(xChild); + + break; } - break; case accessibility::AccessibleEventId::INVALIDATE_ALL_CHILDREN: - g_warning( "Invalidate all children called\n" ); - break; + OSL_TRACE( "Invalidate all children called\n" ); + break; default: break; |