diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-14 10:39:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-14 09:48:46 +0000 |
commit | fdf56e4b50b396884f67b841b82bca2ae8def848 (patch) | |
tree | 7b13a4c6370cb97ab04a327a6839302e010cac88 /sfx2/source/view | |
parent | 2cee32bd4f90cc70a44755f9a8e4a6e9c6c6f2d9 (diff) |
loplugin:unusedmethods
Checked a couple of them:
StandardCheckVisisbilityRedirector is unused since
commit b1f8cf37828d5f37527e54774aa4935610aa6325
Author: Noel Grandin <noel.grandin@collabora.co.uk>
Date: Wed Nov 2 10:57:21 2016 +0200
loplugin:singlevalfields
SfxQueryStatus is unused since
commit 64a708cba9b954afe3331f63c58218eb53b3d0ce
Author: Caolán McNamara <caolanm@redhat.com>
Date: Sat Nov 5 20:28:27 2016 +0000
Revert "Reverts a commit series that cripple windows ci."
Change-Id: If1c9fe26c3ebc573d8c53c8f060b05c27f2711e5
Reviewed-on: https://gerrit.libreoffice.org/30840
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/view')
-rw-r--r-- | sfx2/source/view/frame.cxx | 13 | ||||
-rw-r--r-- | sfx2/source/view/viewfrm.cxx | 16 |
2 files changed, 0 insertions, 29 deletions
diff --git a/sfx2/source/view/frame.cxx b/sfx2/source/view/frame.cxx index 9e80816a2633..e9cf6eb1d55d 100644 --- a/sfx2/source/view/frame.cxx +++ b/sfx2/source/view/frame.cxx @@ -239,14 +239,6 @@ SfxFrame* SfxFrame::GetChildFrame( sal_uInt16 nPos ) const return nullptr; } -void SfxFrame::RemoveChildFrame_Impl( SfxFrame* pFrame ) -{ - DBG_ASSERT( pChildArr, "Unknown Frame!"); - SfxFrameArr_Impl::iterator it = std::find( pChildArr->begin(), pChildArr->end(), pFrame ); - if ( it != pChildArr->end() ) - pChildArr->erase( it ); -}; - bool SfxFrame::IsClosing_Impl() const { return pImpl->bClosing; @@ -299,11 +291,6 @@ SfxViewFrame* SfxFrame::GetCurrentViewFrame() const return pImpl->pCurrentViewFrame; } -SfxDispatcher* SfxFrame::GetDispatcher_Impl() const -{ - return pImpl->pCurrentViewFrame->GetDispatcher(); -} - bool SfxFrame::IsAutoLoadLocked_Impl() const { // Its own Document is locked? diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx index 9240a3a6f1dc..18022ecafb1e 100644 --- a/sfx2/source/view/viewfrm.cxx +++ b/sfx2/source/view/viewfrm.cxx @@ -1643,22 +1643,6 @@ const Size& SfxViewFrame::GetMargin_Impl() const return m_pImpl->aMargin; } -void SfxViewFrame::SetActiveChildFrame_Impl( SfxViewFrame *pViewFrame ) -{ - if ( pViewFrame != m_pImpl->pActiveChild ) - { - m_pImpl->pActiveChild = pViewFrame; - - Reference< XFramesSupplier > xFrame( GetFrame().GetFrameInterface(), UNO_QUERY ); - Reference< XFrame > xActive; - if ( pViewFrame ) - xActive = pViewFrame->GetFrame().GetFrameInterface(); - - if ( xFrame.is() ) // xFrame can be NULL - xFrame->setActiveFrame( xActive ); - } -} - SfxViewFrame* SfxViewFrame::GetActiveChildFrame_Impl() const { SfxViewFrame *pViewFrame = m_pImpl->pActiveChild; |