diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-20 17:22:00 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-21 07:44:43 +0000 |
commit | 382eb1a23c390154619c385414bdbe6f6e461173 (patch) | |
tree | dbd1970c3d36903b78ed4c754f5faf14f57755c7 /svx/source | |
parent | 652933e8fe46b24049ad0a6e61811727b1965aea (diff) |
remove untyped Link<>
Change-Id: I809f9e10309ceadda0a82c3818277323b34ec61b
Reviewed-on: https://gerrit.libreoffice.org/19491
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/dialog/hdft.cxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/svx/source/dialog/hdft.cxx b/svx/source/dialog/hdft.cxx index 925d43d475bd..b1e9c1b3a251 100644 --- a/svx/source/dialog/hdft.cxx +++ b/svx/source/dialog/hdft.cxx @@ -466,7 +466,7 @@ void SvxHFPage::Reset( const SfxItemSet* rSet ) m_pLMEdit->SaveValue(); m_pRMEdit->SaveValue(); m_pCntSharedBox->SaveValue(); - RangeHdl( 0 ); + RangeHdl(); const SfxPoolItem* pItem = 0; SfxObjectShell* pShell; @@ -1046,7 +1046,7 @@ void SvxHFPage::ActivatePage( const SfxItemSet& rSet ) m_pBspWin->SetVert( static_cast<const SfxBoolItem*>(pItem)->GetValue() ); } ResetBackground_Impl( rSet ); - RangeHdl( 0 ); + RangeHdl(); } SfxTabPage::sfxpg SvxHFPage::DeactivatePage( SfxItemSet* _pSet ) @@ -1056,11 +1056,6 @@ SfxTabPage::sfxpg SvxHFPage::DeactivatePage( SfxItemSet* _pSet ) return LEAVE_PAGE; } -IMPL_LINK_NOARG(SvxHFPage, RangeHdl) -{ - RangeHdl(); - return 0; -} IMPL_LINK_NOARG_TYPED(SvxHFPage, RangeFocusHdl, Control&, void) { RangeHdl(); |