summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-11-14 16:01:53 +0000
committerXisco Faulí <xiscofauli@libreoffice.org>2019-11-18 13:21:25 +0100
commit070bb33d301daeb8767d31847c0eeaa19165d761 (patch)
tree338b47615cdf3f04ad82cfe76d416d3727d3bbed /svx
parentcd77ab93b0f8e629c12d1b46d1be86e67dc93f0f (diff)
Resolves: tdf#128104 Input Engine events are delivered via Command
so editengine needs to get those events too. Change-Id: I528065ef804f0a2dfa98e49034c86e9483bade2d Reviewed-on: https://gerrit.libreoffice.org/82720 Tested-by: Jenkins Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/weldeditview.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/svx/source/dialog/weldeditview.cxx b/svx/source/dialog/weldeditview.cxx
index 1f6e0332cfe5..764f933c256c 100644
--- a/svx/source/dialog/weldeditview.cxx
+++ b/svx/source/dialog/weldeditview.cxx
@@ -132,6 +132,12 @@ bool WeldEditView::KeyInput(const KeyEvent& rKEvt)
return true;
}
+bool WeldEditView::Command(const CommandEvent& rCEvt)
+{
+ m_xEditView->Command(rCEvt);
+ return true;
+}
+
class WeldEditAccessible;
class WeldViewForwarder : public SvxViewForwarder