diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-07 12:03:43 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-07 12:07:43 +0200 |
commit | a360d0b33a66be1ae190196e39c12b0494ba2840 (patch) | |
tree | 6466302bcb6187bc7fed17695b077527b5d34f9a /sfx2 | |
parent | 5700899b13826f27be9c43fa9d7b5df786dd66df (diff) |
loplugin:staticmethods: sfx2
Change-Id: I64bd8564b335481a8cdfb053cc9563bea8ef47d3
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/app.cxx | 10 | ||||
-rw-r--r-- | sfx2/source/appl/sfxhelp.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/dialog/basedlgs.cxx | 4 | ||||
-rw-r--r-- | sfx2/source/dialog/dockwin.cxx | 4 | ||||
-rw-r--r-- | sfx2/source/dialog/mgetempl.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/dialog/splitwin.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/doc/objmisc.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/doc/objstor.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/view/viewfrm.cxx | 12 |
9 files changed, 20 insertions, 20 deletions
diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx index 0b65b948abdd..0b0c2d833391 100644 --- a/sfx2/source/appl/app.cxx +++ b/sfx2/source/appl/app.cxx @@ -314,11 +314,11 @@ void SfxApplication::SetViewFrame_Impl( SfxViewFrame *pFrame ) { // get the containerframes ( if one of the frames is an InPlaceFrame ) SfxViewFrame *pOldContainerFrame = pImpl->pViewFrame; - while ( pOldContainerFrame && pOldContainerFrame->GetParentViewFrame_Impl() ) - pOldContainerFrame = pOldContainerFrame->GetParentViewFrame_Impl(); + while ( pOldContainerFrame && SfxViewFrame::GetParentViewFrame_Impl() ) + pOldContainerFrame = SfxViewFrame::GetParentViewFrame_Impl(); SfxViewFrame *pNewContainerFrame = pFrame; - while ( pNewContainerFrame && pNewContainerFrame->GetParentViewFrame_Impl() ) - pNewContainerFrame = pNewContainerFrame->GetParentViewFrame_Impl(); + while ( pNewContainerFrame && SfxViewFrame::GetParentViewFrame_Impl() ) + pNewContainerFrame = SfxViewFrame::GetParentViewFrame_Impl(); // DocWinActivate : both frames belong to the same TopWindow // TopWinActivate : both frames belong to different TopWindows @@ -467,7 +467,7 @@ extern "C" void basicide_macro_organizer(sal_Int16); #endif -IMPL_LINK( SfxApplication, GlobalBasicErrorHdl_Impl, StarBASIC*, pStarBasic, bool ) +IMPL_STATIC_LINK( SfxApplication, GlobalBasicErrorHdl_Impl, StarBASIC*, pStarBasic, bool ) { #if !HAVE_FEATURE_SCRIPTING (void) pStarBasic; diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx index 8e10bb7dd8c1..9247ac5cf961 100644 --- a/sfx2/source/appl/sfxhelp.cxx +++ b/sfx2/source/appl/sfxhelp.cxx @@ -658,7 +658,7 @@ bool SfxHelp::Start_Impl(const OUString& rURL, const vcl::Window* pWindow, const OUString SfxHelp::CreateHelpURL(const OUString& aCommandURL, const OUString& rModuleName) { SfxHelp* pHelp = static_cast< SfxHelp* >(Application::GetHelp()); - return pHelp ? pHelp->CreateHelpURL_Impl( aCommandURL, rModuleName ) : OUString(); + return pHelp ? SfxHelp::CreateHelpURL_Impl( aCommandURL, rModuleName ) : OUString(); } OUString SfxHelp::GetDefaultHelpModule() diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx index 971c7502f4bb..e4011862de40 100644 --- a/sfx2/source/dialog/basedlgs.cxx +++ b/sfx2/source/dialog/basedlgs.cxx @@ -333,7 +333,7 @@ bool SfxModelessDialog::Notify( NotifyEvent& rEvt ) else if ( rEvt.GetType() == MouseNotifyEvent::LOSEFOCUS && !HasChildPathFocus() ) { pBindings->SetActiveFrame( css::uno::Reference< css::frame::XFrame > () ); - pImpl->pMgr->Deactivate_Impl(); + SfxChildWindow::Deactivate_Impl(); } else if( rEvt.GetType() == MouseNotifyEvent::KEYINPUT ) { @@ -421,7 +421,7 @@ bool SfxFloatingWindow::Notify( NotifyEvent& rEvt ) if ( !HasChildPathFocus() ) { pBindings->SetActiveFrame( nullptr ); - pImpl->pMgr->Deactivate_Impl(); + SfxChildWindow::Deactivate_Impl(); } } else if( rEvt.GetType() == MouseNotifyEvent::KEYINPUT ) diff --git a/sfx2/source/dialog/dockwin.cxx b/sfx2/source/dialog/dockwin.cxx index f74494f1ed7c..9365efea38a3 100644 --- a/sfx2/source/dialog/dockwin.cxx +++ b/sfx2/source/dialog/dockwin.cxx @@ -1657,14 +1657,14 @@ bool SfxDockingWindow::Notify( NotifyEvent& rEvt ) { pBindings->SetActiveFrame( nullptr ); if (pMgr != nullptr) - pMgr->Deactivate_Impl(); + SfxChildWindow::Deactivate_Impl(); } return DockingWindow::Notify( rEvt ); } -SplitWindowItemFlags SfxDockingWindow::GetWinBits_Impl() const +SplitWindowItemFlags SfxDockingWindow::GetWinBits_Impl() { return SplitWindowItemFlags::NONE; } diff --git a/sfx2/source/dialog/mgetempl.cxx b/sfx2/source/dialog/mgetempl.cxx index 978cf37ff0c8..a0a41e7d8e6d 100644 --- a/sfx2/source/dialog/mgetempl.cxx +++ b/sfx2/source/dialog/mgetempl.cxx @@ -95,7 +95,7 @@ SfxManageStyleSheetPage::SfxManageStyleSheetPage(vcl::Window* pParent, const Sfx else m_pEditLinkStyleBtn->Enable(); - ResMgr* pResMgr = SfxGetpApp()->GetModule_Impl()->GetResMgr(); + ResMgr* pResMgr = SfxApplication::GetModule_Impl()->GetResMgr(); OSL_ENSURE( pResMgr, "No ResMgr in Module" ); pFamilies = new SfxStyleFamilies( ResId( DLG_STYLE_DESIGNER, *pResMgr ) ); diff --git a/sfx2/source/dialog/splitwin.cxx b/sfx2/source/dialog/splitwin.cxx index a31e3563766a..2e80e3b7fd19 100644 --- a/sfx2/source/dialog/splitwin.cxx +++ b/sfx2/source/dialog/splitwin.cxx @@ -663,7 +663,7 @@ void SfxSplitWindow::InsertWindow_Impl( SfxDock_Impl* pDock, { SfxDockingWindow* pDockWin = pDock->pWin; - SplitWindowItemFlags nItemBits = pDockWin->GetWinBits_Impl(); + SplitWindowItemFlags nItemBits = SfxDockingWindow::GetWinBits_Impl(); long nWinSize, nSetSize; if ( IsHorizontal() ) diff --git a/sfx2/source/doc/objmisc.cxx b/sfx2/source/doc/objmisc.cxx index 60f4c6345f74..13e762ae57d7 100644 --- a/sfx2/source/doc/objmisc.cxx +++ b/sfx2/source/doc/objmisc.cxx @@ -1867,7 +1867,7 @@ bool SfxObjectShell_Impl::hasTrustedScriptingSignature( bool bAllowUIToAddAuthor if ( aInfo.getLength() ) { if ( nScriptingSignatureState == SignatureState::UNKNOWN ) - nScriptingSignatureState = rDocShell.ImplCheckSignaturesInformation( aInfo ); + nScriptingSignatureState = SfxObjectShell::ImplCheckSignaturesInformation( aInfo ); if ( nScriptingSignatureState == SignatureState::OK || nScriptingSignatureState == SignatureState::NOTVALIDATED ) diff --git a/sfx2/source/doc/objstor.cxx b/sfx2/source/doc/objstor.cxx index 3de2dc38b6fe..6edaf1159291 100644 --- a/sfx2/source/doc/objstor.cxx +++ b/sfx2/source/doc/objstor.cxx @@ -981,7 +981,7 @@ bool SfxObjectShell::IsOwnStorageFormat(const SfxMedium &rMedium) } -bool SfxObjectShell::IsPackageStorageFormat_Impl(const SfxMedium &rMedium) const +bool SfxObjectShell::IsPackageStorageFormat_Impl(const SfxMedium &rMedium) { return !rMedium.GetFilter() || // Embedded ( rMedium.GetFilter()->UsesStorage() && diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx index f84b8b2cd2d6..1a161f3ba9ab 100644 --- a/sfx2/source/view/viewfrm.cxx +++ b/sfx2/source/view/viewfrm.cxx @@ -1082,7 +1082,7 @@ void SfxViewFrame::DoActivate( bool bUI ) SfxViewFrame *pFrame = GetParentViewFrame(); while ( pFrame ) { - pFrame->m_pDispatcher->DoParentActivate_Impl(); + SfxDispatcher::DoParentActivate_Impl(); pFrame = pFrame->GetParentViewFrame(); } } @@ -1101,7 +1101,7 @@ void SfxViewFrame::DoDeactivate(bool bUI, SfxViewFrame* pNewFrame ) while ( pFrame ) { if ( !pNewFrame || !pNewFrame->GetFrame().IsParent( &pFrame->GetFrame() ) ) - pFrame->m_pDispatcher->DoParentDeactivate_Impl(); + SfxDispatcher::DoParentDeactivate_Impl(); pFrame = pFrame->GetParentViewFrame(); } } @@ -1555,7 +1555,7 @@ void SfxViewFrame::SetViewShell_Impl( SfxViewShell *pVSh ) The ParentViewFrame of the Containers ViewFrame in the internal InPlace */ //TODO/LATER: is it still necessary? is there a replacement for GetParentViewFrame_Impl? -SfxViewFrame* SfxViewFrame::GetParentViewFrame_Impl() const +SfxViewFrame* SfxViewFrame::GetParentViewFrame_Impl() { return nullptr; } @@ -1700,7 +1700,7 @@ void SfxViewFrame::MakeActive_Impl( bool bGrabFocus ) { SfxInPlaceClient *pCli = GetViewShell()->GetUIActiveClient(); if ( ( !pCli || !pCli->IsObjectUIActive() ) && - ( !pCurrent || pCurrent->GetParentViewFrame_Impl() != this ) ) + ( !pCurrent || SfxViewFrame::GetParentViewFrame_Impl() != this ) ) GetFrame().GrabFocusOnComponent_Impl(); } } @@ -2812,8 +2812,8 @@ void SfxViewFrame::MiscState_Impl(SfxItemSet &rSet) { // Get the ContainerFrame, when internal InPlace. SfxViewFrame *pFrame = this; - if ( pFrame->GetParentViewFrame_Impl() ) - pFrame = pFrame->GetParentViewFrame_Impl(); + if ( SfxViewFrame::GetParentViewFrame_Impl() ) + pFrame = SfxViewFrame::GetParentViewFrame_Impl(); rSet.Put( SfxStringItem( nWhich, pFrame->GetActualPresentationURL_Impl() ) ); break; } |