diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-28 16:20:25 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-31 09:50:10 +0200 |
commit | 410c06bec452b09cd15ddfcb82b8b2b0508f3c55 (patch) | |
tree | a7841b14e58bf02a3f45d5a0547dc711b3dc7cba /svtools/source | |
parent | 32673845809df70efe2651c3ca82f574245279c2 (diff) |
convert Link<> to typed
and remove some dead code
Change-Id: I608ed684fafb33390d869f7ebd4000c53d7fb28d
Diffstat (limited to 'svtools/source')
-rw-r--r-- | svtools/source/contnr/imivctl1.cxx | 2 | ||||
-rw-r--r-- | svtools/source/contnr/ivctrl.cxx | 10 |
2 files changed, 0 insertions, 12 deletions
diff --git a/svtools/source/contnr/imivctl1.cxx b/svtools/source/contnr/imivctl1.cxx index 0a115d96c5e1..dedeaf88c630 100644 --- a/svtools/source/contnr/imivctl1.cxx +++ b/svtools/source/contnr/imivctl1.cxx @@ -2751,13 +2751,11 @@ IMPL_LINK_NOARG_TYPED(SvxIconChoiceCtrl_Impl, AutoArrangeHdl, Idle *, void) IMPL_LINK_NOARG_TYPED(SvxIconChoiceCtrl_Impl, VisRectChangedHdl, Idle *, void) { aVisRectChangedIdle.Stop(); - pView->VisibleRectChanged(); } IMPL_LINK_NOARG_TYPED(SvxIconChoiceCtrl_Impl, DocRectChangedHdl, Idle *, void) { aDocRectChangedIdle.Stop(); - pView->DocumentRectChanged(); } bool SvxIconChoiceCtrl_Impl::IsTextHit( SvxIconChoiceCtrlEntry* pEntry, const Point& rDocPos ) diff --git a/svtools/source/contnr/ivctrl.cxx b/svtools/source/contnr/ivctrl.cxx index 01b76a4eb9b9..de4293cf88d7 100644 --- a/svtools/source/contnr/ivctrl.cxx +++ b/svtools/source/contnr/ivctrl.cxx @@ -194,16 +194,6 @@ Point SvtIconChoiceCtrl::GetPixelPos( const Point& rPosLogic ) const return aPos; } -void SvtIconChoiceCtrl::DocumentRectChanged() -{ - _aDocRectChangedHdl.Call( this ); -} - -void SvtIconChoiceCtrl::VisibleRectChanged() -{ - _aVisRectChangedHdl.Call( this ); -} - void SvtIconChoiceCtrl::GetFocus() { _pImp->GetFocus(); |