diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-02 16:35:25 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-03 09:06:45 +0000 |
commit | 880bcf9ed8c54f53d9fb631b9e064a468a9d02da (patch) | |
tree | 34387120eb49f8bd71a147a9e88343d5b752ebcd /sfx2 | |
parent | ea6b378221efea0392c5085d621ff38a612ade3e (diff) |
loplugin:unnecessaryvirtual
Change-Id: I572b83949c7e643536b7d62567760546509e4d9f
Reviewed-on: https://gerrit.libreoffice.org/30514
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/childwin.cxx | 4 | ||||
-rw-r--r-- | sfx2/source/dialog/navigat.cxx | 10 |
2 files changed, 0 insertions, 14 deletions
diff --git a/sfx2/source/appl/childwin.cxx b/sfx2/source/appl/childwin.cxx index d3ea17ce41ab..a637818b227a 100644 --- a/sfx2/source/appl/childwin.cxx +++ b/sfx2/source/appl/childwin.cxx @@ -537,10 +537,6 @@ FloatingWindow* SfxChildWindowContext::GetFloatingWindow() const } } -void SfxChildWindowContext::Resizing( Size& ) -{ -} - void SfxChildWindow::SetFactory_Impl( SfxChildWinFactory *pF ) { pImpl->pFact = pF; diff --git a/sfx2/source/dialog/navigat.cxx b/sfx2/source/dialog/navigat.cxx index bb1ccd6a2ef6..c41717bfabb0 100644 --- a/sfx2/source/dialog/navigat.cxx +++ b/sfx2/source/dialog/navigat.cxx @@ -64,16 +64,6 @@ void SfxNavigator::Resize() pWrapper->GetContextWindow()->SetSizePixel( GetOutputSizePixel() ); } -void SfxNavigator::Resizing( Size &rSize ) -{ - SfxDockingWindow::Resizing( rSize ); - - SfxChildWindowContext *pCon = GetChildWindow_Impl()->GetContext_Impl(); - DBG_ASSERT( pCon, "No Context!" ); - if ( pCon ) - pCon->Resizing( rSize ); -} - bool SfxNavigator::Close() { DBG_ASSERT( GetChildWindow_Impl()->GetContext_Impl(), "No Context!" ); |