summaryrefslogtreecommitdiff
path: root/vcl/source/control/edit.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-04-04 14:33:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-04-07 17:46:39 +0200
commitc4764345e0d326c7a9d443f5af06f06854806bdc (patch)
treefa2b95cb454e3db9a683061a6a3b2bdaef11fada /vcl/source/control/edit.cxx
parent20a35c313496b1ca63d3bb79e0a88a3d862d8747 (diff)
weld ScLinkedAreaDlg
Change-Id: I427e5abd76f6edfa891c9186d5822173d3fa7f7e Reviewed-on: https://gerrit.libreoffice.org/52513 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source/control/edit.cxx')
-rw-r--r--vcl/source/control/edit.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx
index 42dd22296585..8d3bfa665596 100644
--- a/vcl/source/control/edit.cxx
+++ b/vcl/source/control/edit.cxx
@@ -1677,6 +1677,14 @@ bool Edit::ImplHandleKeyEvent( const KeyEvent& rKEvt )
}
break;
+ case KEY_RETURN:
+ if (maActivateHdl.IsSet())
+ {
+ maActivateHdl.Call(*this);
+ bDone = true;
+ }
+ break;
+
default:
{
if ( IsCharInput( rKEvt ) )