diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-04-04 14:33:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-04-07 17:46:39 +0200 |
commit | c4764345e0d326c7a9d443f5af06f06854806bdc (patch) | |
tree | fa2b95cb454e3db9a683061a6a3b2bdaef11fada /include/vcl/edit.hxx | |
parent | 20a35c313496b1ca63d3bb79e0a88a3d862d8747 (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 'include/vcl/edit.hxx')
-rw-r--r-- | include/vcl/edit.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/vcl/edit.hxx b/include/vcl/edit.hxx index d4a9b418c7ab..c55a19eb02c0 100644 --- a/include/vcl/edit.hxx +++ b/include/vcl/edit.hxx @@ -97,6 +97,7 @@ private: Link<Edit&,void> maModifyHdl; Link<Edit&,void> maUpdateDataHdl; Link<Edit&,void> maAutocompleteHdl; + Link<Edit&,void> maActivateHdl; std::unique_ptr<VclBuilder> mpUIBuilder; css::uno::Reference<css::i18n::XExtendedInputSequenceChecker> mxISC; @@ -237,6 +238,8 @@ public: virtual const Link<Edit&,void>& GetModifyHdl() const { return maModifyHdl; } virtual void SetUpdateDataHdl( const Link<Edit&,void>& rLink ) { maUpdateDataHdl = rLink; } + void SetActivateHdl(const Link<Edit&,void>& rLink) { maActivateHdl = rLink; } + void SetSubEdit( Edit* pEdit ); Edit* GetSubEdit() const { return mpSubEdit; } |