summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-03-05 11:00:56 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-03-05 16:39:21 +0100
commit3a2a610451aebaf2cf6168029d4a9a47072ff9ca (patch)
tree9e6d094923cf7cd732e84ab786f4f44e46937498
parent89b377e51c06178af77b671a10caa78daf08eac1 (diff)
parent panel doesn't need an explicit KeyInput handler
the treeview child one is sufficient Change-Id: I3a5e7a262055e5f03cf5323eeaa8c169eaab2693 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112005 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--sd/source/ui/animations/CustomAnimationPane.cxx6
-rw-r--r--sd/source/ui/inc/CustomAnimationPane.hxx3
2 files changed, 0 insertions, 9 deletions
diff --git a/sd/source/ui/animations/CustomAnimationPane.cxx b/sd/source/ui/animations/CustomAnimationPane.cxx
index 6b6aff20dd1f..b816ec57d3c2 100644
--- a/sd/source/ui/animations/CustomAnimationPane.cxx
+++ b/sd/source/ui/animations/CustomAnimationPane.cxx
@@ -268,12 +268,6 @@ void CustomAnimationPane::addUndo()
}
}
-void CustomAnimationPane::KeyInput( const KeyEvent& rKEvt )
-{
- if (mxCustomAnimationList)
- mxCustomAnimationList->KeyInputHdl(rKEvt);
-}
-
void CustomAnimationPane::addListener()
{
Link<tools::EventMultiplexerEvent&,void> aLink( LINK(this,CustomAnimationPane,EventMultiplexerListener) );
diff --git a/sd/source/ui/inc/CustomAnimationPane.hxx b/sd/source/ui/inc/CustomAnimationPane.hxx
index d07e76a7c3f2..1d795b20ce68 100644
--- a/sd/source/ui/inc/CustomAnimationPane.hxx
+++ b/sd/source/ui/inc/CustomAnimationPane.hxx
@@ -70,9 +70,6 @@ public:
void preview( const css::uno::Reference< css::animations::XAnimationNode >& xAnimationNode );
void remove( CustomAnimationEffectPtr const & pEffect );
- // Control
- virtual void KeyInput( const KeyEvent& rKEvt ) override;
-
// ICustomAnimationListController
virtual void onSelect() override;
virtual void onDoubleClick() override;