summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2022-01-31 09:24:26 +0100
committerMiklos Vajna <vmiklos@collabora.com>2022-01-31 17:25:31 +0100
commit1cdff0363727327d3bf0e7d5eb105e867ba2d806 (patch)
tree87f723420031491564170df1361ebbb512771b14 /sd
parente1dc4a5815a56eef27d2c83f7971e0eb1ac09b45 (diff)
sw: prefix members of SwPagePreview, SwScrollbar, ...
... sw::sidebar::PageStylesPanel and sw::sidebar::WrapPropertyPanel See tdf#94879 for motivation. Change-Id: I8eb8be59b9fad087fadb2735c46133aca4810415 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129199 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/view/GraphicViewShellBase.cxx4
-rw-r--r--sd/source/ui/view/ImpressViewShellBase.cxx4
-rw-r--r--sd/source/ui/view/OutlineViewShellBase.cxx4
-rw-r--r--sd/source/ui/view/PresentationViewShellBase.cxx4
-rw-r--r--sd/source/ui/view/SlideSorterViewShellBase.cxx4
5 files changed, 10 insertions, 10 deletions
diff --git a/sd/source/ui/view/GraphicViewShellBase.cxx b/sd/source/ui/view/GraphicViewShellBase.cxx
index eab3a5c02fd3..95dbe71dc1e9 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::pFactory;
+SfxViewFactory* GraphicViewShellBase::m_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)
{
- pFactory = new SfxViewFactory(&CreateInstance, nPrio, "Default");
+ m_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 37fa4000fe99..047b06e8f4ec 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::pFactory;
+SfxViewFactory* ImpressViewShellBase::m_pFactory;
SfxViewShell* ImpressViewShellBase::CreateInstance (
SfxViewFrame *pFrame, SfxViewShell *pOldView)
{
@@ -46,7 +46,7 @@ SfxViewShell* ImpressViewShellBase::CreateInstance (
}
void ImpressViewShellBase::RegisterFactory( SfxInterfaceId nPrio )
{
- pFactory = new SfxViewFactory(&CreateInstance,nPrio,"Default");
+ m_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 59e6be4ed220..2e566e5c7d48 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::pFactory;
+SfxViewFactory* OutlineViewShellBase::m_pFactory;
SfxViewShell* OutlineViewShellBase::CreateInstance (
SfxViewFrame *pFrame, SfxViewShell *pOldView)
{
@@ -42,7 +42,7 @@ SfxViewShell* OutlineViewShellBase::CreateInstance (
}
void OutlineViewShellBase::RegisterFactory( SfxInterfaceId nPrio )
{
- pFactory = new SfxViewFactory(&CreateInstance,nPrio,"Outline");
+ m_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 1d73a4bea974..57393ac07060 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::pFactory;
+SfxViewFactory* PresentationViewShellBase::m_pFactory;
SfxViewShell* PresentationViewShellBase::CreateInstance (
SfxViewFrame *_pFrame, SfxViewShell *pOldView)
{
@@ -50,7 +50,7 @@ SfxViewShell* PresentationViewShellBase::CreateInstance (
}
void PresentationViewShellBase::RegisterFactory( SfxInterfaceId nPrio )
{
- pFactory = new SfxViewFactory(
+ m_pFactory = new SfxViewFactory(
&CreateInstance,nPrio,"FullScreenPresentation");
InitFactory();
}
diff --git a/sd/source/ui/view/SlideSorterViewShellBase.cxx b/sd/source/ui/view/SlideSorterViewShellBase.cxx
index a4aff567350e..3d56ab5fed78 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::pFactory;
+SfxViewFactory* SlideSorterViewShellBase::m_pFactory;
SfxViewShell* SlideSorterViewShellBase::CreateInstance (
SfxViewFrame *pFrame, SfxViewShell *pOldView)
{
@@ -43,7 +43,7 @@ SfxViewShell* SlideSorterViewShellBase::CreateInstance (
void SlideSorterViewShellBase::RegisterFactory( SfxInterfaceId nPrio )
{
- pFactory = new SfxViewFactory(&CreateInstance,nPrio,"SlideSorter");
+ m_pFactory = new SfxViewFactory(&CreateInstance,nPrio,"SlideSorter");
InitFactory();
}