summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorJim Raykowski <raykowj@gmail.com>2018-12-01 01:15:59 -0900
committerJim Raykowski <raykowj@gmail.com>2019-01-06 05:27:15 +0100
commit144ee02fc714f2f022e5046aeec2b46cd4cd1476 (patch)
treebed346b571859402bf44ab4574ef51d823bd418c /vcl
parent332dcfcb8e4e09697ad8f795aae8d77f75935214 (diff)
tdf#120170 Use parent key input handler for controls that use subedit
and for key input that is unhandled by edit key input handler Change-Id: Idd41cca737edb5ead241c3d660cd82870206467b Reviewed-on: https://gerrit.libreoffice.org/64417 Tested-by: Jenkins Reviewed-by: Jim Raykowski <raykowj@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/control/edit.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx
index 12b9b8943d8e..9bc6942790c2 100644
--- a/vcl/source/control/edit.cxx
+++ b/vcl/source/control/edit.cxx
@@ -1710,7 +1710,7 @@ void Edit::KeyInput( const KeyEvent& rKEvt )
mpUpdateDataTimer->Start();//do not update while the user is still travelling in the control
if ( mpSubEdit || !ImplHandleKeyEvent( rKEvt ) )
- Control::KeyInput( rKEvt );
+ GetParent()->KeyInput( rKEvt );
}
void Edit::FillLayoutData() const