diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-09-24 19:04:43 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-25 18:19:36 +0000 |
commit | 6fd356a08e92c043be612594eeba1521a837e48a (patch) | |
tree | 96a5cf862647ee1e4e21e84df9e339a9bc4126be /cui/source/inc | |
parent | 51b2ad378a8531a7b02433594cd7f6bbd6a61222 (diff) |
convert Link<> to typed
Change-Id: I845f48577a9b93854e24a2004168c2d2311d9542
Reviewed-on: https://gerrit.libreoffice.org/18854
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/postdlg.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cui/source/inc/postdlg.hxx b/cui/source/inc/postdlg.hxx index 395190897541..d367676dd20d 100644 --- a/cui/source/inc/postdlg.hxx +++ b/cui/source/inc/postdlg.hxx @@ -51,9 +51,9 @@ public: static const sal_uInt16* GetRanges(); const SfxItemSet* GetOutputItemSet() const { return pOutSet; } - void SetPrevHdl( const Link<>& rLink ) + void SetPrevHdl( const Link<SvxPostItDialog&,void>& rLink ) { aPrevHdlLink = rLink; } - void SetNextHdl( const Link<>& rLink ) + void SetNextHdl( const Link<SvxPostItDialog&,void>& rLink ) { aNextHdlLink = rLink; } void EnableTravel(bool bNext, bool bPrev); @@ -91,8 +91,8 @@ private: const SfxItemSet& rSet; SfxItemSet* pOutSet; - Link<> aPrevHdlLink; - Link<> aNextHdlLink; + Link<SvxPostItDialog&,void> aPrevHdlLink; + Link<SvxPostItDialog&,void> aNextHdlLink; DECL_LINK_TYPED(Stamp, Button*, void); DECL_LINK_TYPED(OKHdl, Button*, void); |