summaryrefslogtreecommitdiff
path: root/sfx2/source/appl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-14 11:28:15 +0200
committerNoel Grandin <noel@peralex.com>2015-09-15 09:37:31 +0200
commite0714ae393661da231466ee679d1a6f5cd49fe35 (patch)
tree910be73c75f74d4c62dc881361b1a5a211a34c61 /sfx2/source/appl
parent30350f72d8ce9d60ae6c47d602eff90f34bf71a9 (diff)
convert Link<> to typed
Change-Id: I8f3e401afa27778678788b4ac90ea927a2fed1d7
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r--sfx2/source/appl/newhelp.cxx4
-rw-r--r--sfx2/source/appl/newhelp.hxx2
2 files changed, 2 insertions, 4 deletions
diff --git a/sfx2/source/appl/newhelp.cxx b/sfx2/source/appl/newhelp.cxx
index c096c0a2f551..9e60bd75ad51 100644
--- a/sfx2/source/appl/newhelp.cxx
+++ b/sfx2/source/appl/newhelp.cxx
@@ -2247,13 +2247,11 @@ IMPL_LINK_NOARG_TYPED(SfxHelpTextWindow_Impl, SelectHdl, Idle *, void)
-IMPL_LINK( SfxHelpTextWindow_Impl, NotifyHdl, SvtMiscOptions*, pOptions )
+IMPL_LINK_NOARG_TYPED( SfxHelpTextWindow_Impl, NotifyHdl, LinkParamNone*, void )
{
- (void)pOptions; // unused variable
InitToolBoxImages();
Resize();
aToolBox->Invalidate();
- return 0;
}
diff --git a/sfx2/source/appl/newhelp.hxx b/sfx2/source/appl/newhelp.hxx
index 29728f853784..89c7d5575a79 100644
--- a/sfx2/source/appl/newhelp.hxx
+++ b/sfx2/source/appl/newhelp.hxx
@@ -452,7 +452,7 @@ private:
bool isHandledKey( const vcl::KeyCode& _rKeyCode );
DECL_LINK_TYPED( SelectHdl, Idle *, void);
- DECL_LINK( NotifyHdl, SvtMiscOptions* );
+ DECL_LINK_TYPED( NotifyHdl, LinkParamNone*, void );
DECL_LINK( FindHdl, sfx2::SearchDialog* );
DECL_LINK( CloseHdl, sfx2::SearchDialog* );
DECL_LINK_TYPED( CheckHdl, Button*, void );