diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2022-02-03 20:08:41 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2022-02-04 08:18:44 +0100 |
commit | b78ef5d55b891d8f6788ac53adfab0087d49c7be (patch) | |
tree | 17eb73be5dde227118418014f38e1572ec1a1af9 /sd/source | |
parent | bcd5a154e4284848553f994d4d0612182130c271 (diff) |
sw: prefix members of SwClipboardChangeListener, SwPagePreview, ...
... SwScannerEventListener and SwView_Impl
See tdf#94879 for motivation.
Change-Id: I19958bc70e7dd80ea3f1c75e06b9ac192d40f254
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129472
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/view/GraphicViewShellBase.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/view/ImpressViewShellBase.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/view/OutlineViewShellBase.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/view/PresentationViewShellBase.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/view/SlideSorterViewShellBase.cxx | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/sd/source/ui/view/GraphicViewShellBase.cxx b/sd/source/ui/view/GraphicViewShellBase.cxx index 95dbe71dc1e9..d58c8a0d2479 100644 --- a/sd/source/ui/view/GraphicViewShellBase.cxx +++ b/sd/source/ui/view/GraphicViewShellBase.cxx @@ -33,7 +33,7 @@ namespace sd // We have to expand the SFX_IMPL_VIEWFACTORY macro to call LateInit() after a // new GraphicViewShellBase object has been constructed. -SfxViewFactory* GraphicViewShellBase::m_pFactory; +SfxViewFactory* GraphicViewShellBase::s_pFactory; SfxViewShell* GraphicViewShellBase::CreateInstance(SfxViewFrame* pFrame, SfxViewShell* pOldView) { GraphicViewShellBase* pBase = new GraphicViewShellBase(pFrame, pOldView); @@ -42,7 +42,7 @@ SfxViewShell* GraphicViewShellBase::CreateInstance(SfxViewFrame* pFrame, SfxView } void GraphicViewShellBase::RegisterFactory(SfxInterfaceId nPrio) { - m_pFactory = new SfxViewFactory(&CreateInstance, nPrio, "Default"); + s_pFactory = new SfxViewFactory(&CreateInstance, nPrio, "Default"); InitFactory(); } void GraphicViewShellBase::InitFactory() { SFX_VIEW_REGISTRATION(GraphicDocShell); } diff --git a/sd/source/ui/view/ImpressViewShellBase.cxx b/sd/source/ui/view/ImpressViewShellBase.cxx index 047b06e8f4ec..96b0b5aa9154 100644 --- a/sd/source/ui/view/ImpressViewShellBase.cxx +++ b/sd/source/ui/view/ImpressViewShellBase.cxx @@ -36,7 +36,7 @@ namespace sd { // We have to expand the SFX_IMPL_VIEWFACTORY macro to call LateInit() after a // new ImpressViewShellBase object has been constructed. -SfxViewFactory* ImpressViewShellBase::m_pFactory; +SfxViewFactory* ImpressViewShellBase::s_pFactory; SfxViewShell* ImpressViewShellBase::CreateInstance ( SfxViewFrame *pFrame, SfxViewShell *pOldView) { @@ -46,7 +46,7 @@ SfxViewShell* ImpressViewShellBase::CreateInstance ( } void ImpressViewShellBase::RegisterFactory( SfxInterfaceId nPrio ) { - m_pFactory = new SfxViewFactory(&CreateInstance,nPrio,"Default"); + s_pFactory = new SfxViewFactory(&CreateInstance,nPrio,"Default"); InitFactory(); } void ImpressViewShellBase::InitFactory() diff --git a/sd/source/ui/view/OutlineViewShellBase.cxx b/sd/source/ui/view/OutlineViewShellBase.cxx index 2e566e5c7d48..8da1bcbcae08 100644 --- a/sd/source/ui/view/OutlineViewShellBase.cxx +++ b/sd/source/ui/view/OutlineViewShellBase.cxx @@ -32,7 +32,7 @@ class DrawDocShell; // We have to expand the SFX_IMPL_VIEWFACTORY macro to call LateInit() after a // new OutlineViewShellBase object has been constructed. -SfxViewFactory* OutlineViewShellBase::m_pFactory; +SfxViewFactory* OutlineViewShellBase::s_pFactory; SfxViewShell* OutlineViewShellBase::CreateInstance ( SfxViewFrame *pFrame, SfxViewShell *pOldView) { @@ -42,7 +42,7 @@ SfxViewShell* OutlineViewShellBase::CreateInstance ( } void OutlineViewShellBase::RegisterFactory( SfxInterfaceId nPrio ) { - m_pFactory = new SfxViewFactory(&CreateInstance,nPrio,"Outline"); + s_pFactory = new SfxViewFactory(&CreateInstance,nPrio,"Outline"); InitFactory(); } void OutlineViewShellBase::InitFactory() diff --git a/sd/source/ui/view/PresentationViewShellBase.cxx b/sd/source/ui/view/PresentationViewShellBase.cxx index 57393ac07060..56f6c27fc20b 100644 --- a/sd/source/ui/view/PresentationViewShellBase.cxx +++ b/sd/source/ui/view/PresentationViewShellBase.cxx @@ -39,7 +39,7 @@ class DrawDocShell; // We have to expand the SFX_IMPL_VIEWFACTORY macro to call LateInit() after a // new PresentationViewShellBase object has been constructed. -SfxViewFactory* PresentationViewShellBase::m_pFactory; +SfxViewFactory* PresentationViewShellBase::s_pFactory; SfxViewShell* PresentationViewShellBase::CreateInstance ( SfxViewFrame *_pFrame, SfxViewShell *pOldView) { @@ -50,7 +50,7 @@ SfxViewShell* PresentationViewShellBase::CreateInstance ( } void PresentationViewShellBase::RegisterFactory( SfxInterfaceId nPrio ) { - m_pFactory = new SfxViewFactory( + s_pFactory = new SfxViewFactory( &CreateInstance,nPrio,"FullScreenPresentation"); InitFactory(); } diff --git a/sd/source/ui/view/SlideSorterViewShellBase.cxx b/sd/source/ui/view/SlideSorterViewShellBase.cxx index 3d56ab5fed78..ecf679c981f2 100644 --- a/sd/source/ui/view/SlideSorterViewShellBase.cxx +++ b/sd/source/ui/view/SlideSorterViewShellBase.cxx @@ -32,7 +32,7 @@ class DrawDocShell; // We have to expand the SFX_IMPL_VIEWFACTORY macro to call LateInit() after a // new SlideSorterViewShellBase object has been constructed. -SfxViewFactory* SlideSorterViewShellBase::m_pFactory; +SfxViewFactory* SlideSorterViewShellBase::s_pFactory; SfxViewShell* SlideSorterViewShellBase::CreateInstance ( SfxViewFrame *pFrame, SfxViewShell *pOldView) { @@ -43,7 +43,7 @@ SfxViewShell* SlideSorterViewShellBase::CreateInstance ( void SlideSorterViewShellBase::RegisterFactory( SfxInterfaceId nPrio ) { - m_pFactory = new SfxViewFactory(&CreateInstance,nPrio,"SlideSorter"); + s_pFactory = new SfxViewFactory(&CreateInstance,nPrio,"SlideSorter"); InitFactory(); } |