diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-09-25 09:52:59 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-25 18:20:34 +0000 |
commit | 1296732028df43160d070d27be6fd961e284fdd6 (patch) | |
tree | f6aa28a89c589b4e073257aec9ab0cb881aae012 /include | |
parent | 6fd356a08e92c043be612594eeba1521a837e48a (diff) |
convert Link<> to typed
Change-Id: I0d645d646037d9fbb4f1b97931ace6171a84a267
Reviewed-on: https://gerrit.libreoffice.org/18855
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svxdlg.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx index d97090bac515..1ec6814627c4 100644 --- a/include/svx/svxdlg.hxx +++ b/include/svx/svxdlg.hxx @@ -234,8 +234,8 @@ class AbstractSvxPostItDialog :public VclAbstractDialog public: virtual void SetText( const OUString& rStr ) = 0; //From class Window virtual const SfxItemSet* GetOutputItemSet() const = 0; - virtual void SetPrevHdl( const Link<>& rLink ) = 0; - virtual void SetNextHdl( const Link<>& rLink ) = 0; + virtual void SetPrevHdl( const Link<AbstractSvxPostItDialog&,void>& rLink ) = 0; + virtual void SetNextHdl( const Link<AbstractSvxPostItDialog&,void>& rLink ) = 0; virtual void EnableTravel(bool bNext, bool bPrev) = 0; virtual OUString GetNote() = 0; virtual void SetNote(const OUString& rTxt) = 0; |