diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-09-22 15:04:21 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-22 18:55:43 +0000 |
commit | a829ba593c921a2b6b5fce7f216f48ee9d6c3812 (patch) | |
tree | cccda72ee2403d91b0129d0011e38cb65721092a /include | |
parent | 5645960113b3b7ded309bdb2ed5bd4a51877b96c (diff) |
convert Link<> to typed
Change-Id: I99710933b818ebb0e2d70262c3edd7937e5f03ca
Reviewed-on: https://gerrit.libreoffice.org/18772
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/edtdlg.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/editeng/edtdlg.hxx b/include/editeng/edtdlg.hxx index 8882f95ee20b..b509c696e66a 100644 --- a/include/editeng/edtdlg.hxx +++ b/include/editeng/edtdlg.hxx @@ -37,6 +37,7 @@ namespace vcl { class Window; } class ResId; class SvxSpellWrapper; class Button; +class CheckBox; class AbstractThesaurusDialog : public VclAbstractDialog { @@ -62,7 +63,7 @@ class AbstractHangulHanjaConversionDialog : public VclAbstractTerminatedDialog virtual void SetIgnoreAllHdl( const Link<Button*,void>& _rHdl ) = 0; virtual void SetChangeHdl( const Link<Button*,void>& _rHdl ) = 0; virtual void SetChangeAllHdl( const Link<Button*,void>& _rHdl ) = 0; - virtual void SetClickByCharacterHdl( const Link<>& _rHdl ) = 0; + virtual void SetClickByCharacterHdl( const Link<CheckBox*,void>& _rHdl ) = 0; virtual void SetConversionFormatChangedHdl( const Link<Button*,void>& _rHdl ) = 0; virtual void SetFindHdl( const Link<Button*,void>& _rHdl ) = 0; virtual bool GetUseBothDirections() const= 0; |