diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-06-27 21:28:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-06-28 21:38:55 +0200 |
commit | 8fe03ea93213bbb19b6ee9862a3966144f0df5cb (patch) | |
tree | f0bbdf1af6e3af9e819fdb0503e70e09be0c4a5f /svtools | |
parent | f07a56498875e67fa2637fd0a73890629024efa8 (diff) |
decouple IEditImplementation from Edit more
Change-Id: Ie01373ca40d519c179485bd1a4b6616d5929fa5d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97328
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/brwbox/ebbcontrols.cxx | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/svtools/source/brwbox/ebbcontrols.cxx b/svtools/source/brwbox/ebbcontrols.cxx index 2c6291fd3f7e..df5eb4d4b2d8 100644 --- a/svtools/source/brwbox/ebbcontrols.cxx +++ b/svtools/source/brwbox/ebbcontrols.cxx @@ -317,6 +317,15 @@ namespace svt return const_cast< MultiLineEditImplementation* >( this )->GetEditWindow().GetSelected( aSeparator ); } + IMPL_LINK_NOARG(MultiLineEditImplementation, ModifyHdl, Edit&, void) + { + m_aModifyHdl.Call(nullptr); + } + + IMPL_LINK_NOARG(EditImplementation, ModifyHdl, Edit&, void) + { + m_aModifyHdl.Call(nullptr); + } //= EditCellController @@ -388,7 +397,7 @@ namespace svt } - IMPL_LINK_NOARG(EditCellController, ModifyHdl, Edit&, void) + IMPL_LINK_NOARG(EditCellController, ModifyHdl, LinkParamNone*, void) { callModifyHdl(); } |