diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-07-10 15:53:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-07-11 19:55:14 +0200 |
commit | 098e26eef7dc7e792eddd05c66354616fde81c72 (patch) | |
tree | 5d8c1d325c046ff381b02db2d96d5336d4f1304c /svtools/source | |
parent | 255d96a3e1f4e77ed6444a21c1c9c24b3dc9d194 (diff) |
use an aux modify handler instead of listening for VclEventId::EditModify
Change-Id: Ie35ad08a24b8b0c989806c4739bfe925fd9ab746
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98545
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools/source')
-rw-r--r-- | svtools/source/brwbox/ebbcontrols.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/brwbox/ebbcontrols.cxx b/svtools/source/brwbox/ebbcontrols.cxx index febac63d4eb5..f26c7e013ad0 100644 --- a/svtools/source/brwbox/ebbcontrols.cxx +++ b/svtools/source/brwbox/ebbcontrols.cxx @@ -318,12 +318,12 @@ namespace svt IMPL_LINK_NOARG(MultiLineEditImplementation, ModifyHdl, weld::TextView&, void) { - m_aModifyHdl.Call(nullptr); + CallModifyHdls(); } IMPL_LINK_NOARG(EditImplementation, ModifyHdl, Edit&, void) { - m_aModifyHdl.Call(nullptr); + CallModifyHdls(); } //= EditCellController @@ -345,7 +345,7 @@ namespace svt IMPL_LINK_NOARG(EntryImplementation, ModifyHdl, weld::Entry&, void) { - m_aModifyHdl.Call(nullptr); + CallModifyHdls(); } ControlBase::ControlBase(BrowserDataWin* pParent, const OUString& rUIXMLDescription, const OString& rID) |