diff options
Diffstat (limited to 'vcl/source/control/edit.cxx')
-rw-r--r-- | vcl/source/control/edit.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx index c1337c5dfe24d..6e26672581906 100644 --- a/vcl/source/control/edit.cxx +++ b/vcl/source/control/edit.cxx @@ -1672,8 +1672,7 @@ bool Edit::ImplHandleKeyEvent( const KeyEvent& rKEvt ) case KEY_RETURN: if (maActivateHdl.IsSet()) { - maActivateHdl.Call(*this); - bDone = true; + bDone = maActivateHdl.Call(*this); } break; |