diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-02-23 10:50:35 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-02-23 14:54:06 +0100 |
commit | 731f08e5a84817dbc3c6be6e670025d51f39cd61 (patch) | |
tree | d40ada302938cc34981d36d684bdab5ea67c2721 /svtools | |
parent | acb442a5ffce156e6af4781643df76d4bebe5df5 (diff) |
reportdesigner focus out handler clobbering the preexisting handler
set by the databrowser, so chain one after the other
Change-Id: I5aa16635031be425b9354e5a2d6b891a81d54e55
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111384
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/brwbox/ebbcontrols.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/svtools/source/brwbox/ebbcontrols.cxx b/svtools/source/brwbox/ebbcontrols.cxx index 35fb994daaea..ef783529e6a5 100644 --- a/svtools/source/brwbox/ebbcontrols.cxx +++ b/svtools/source/brwbox/ebbcontrols.cxx @@ -356,12 +356,13 @@ namespace svt IMPL_LINK_NOARG(ControlBase, FocusInHdl, weld::Widget&, void) { - return static_cast<BrowserDataWin*>(GetParent())->GetParent()->ChildFocusIn(); + m_aFocusInHdl.Call(nullptr); + static_cast<BrowserDataWin*>(GetParent())->GetParent()->ChildFocusIn(); } IMPL_LINK_NOARG(ControlBase, FocusOutHdl, weld::Widget&, void) { - return static_cast<BrowserDataWin*>(GetParent())->GetParent()->ChildFocusOut(); + static_cast<BrowserDataWin*>(GetParent())->GetParent()->ChildFocusOut(); } void EditControlBase::dispose() |