summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-05-17 12:32:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-05-17 12:36:15 +0100
commit47bf48a035f768689b92a977caffbd312f6a2a5d (patch)
tree2299d37e288e592fe2c4ec6d8e3f8e1e8fa25c5a /vcl
parent0e609b5d9576c612ca98a820374daf94fdf485fd (diff)
shut up about the PAGE_CHANGED event from slide pane slide switching
Change-Id: I8ebe1b3db894cd3a2e9834ec73949cc6504366b9
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/gtk/a11y/atklistener.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/vcl/unx/gtk/a11y/atklistener.cxx b/vcl/unx/gtk/a11y/atklistener.cxx
index d4eb9edd8ca0..053138ebd202 100644
--- a/vcl/unx/gtk/a11y/atklistener.cxx
+++ b/vcl/unx/gtk/a11y/atklistener.cxx
@@ -558,6 +558,17 @@ void AtkListener::notifyEvent( const accessibility::AccessibleEventObject& aEven
break;
}
+ case accessibility::AccessibleEventId::PAGE_CHANGED:
+ {
+ /* // If we implemented AtkDocument then I imagine this is what this
+ // handler should look like
+ sal_Int32 nPos=0;
+ aEvent.NewValue >>= nPos;
+ g_signal_emit_by_name( G_OBJECT( atk_obj ), "page_changed", nPos );
+ */
+ break;
+ }
+
default:
g_warning( "Unknown event notification %d", aEvent.EventId );
break;