summaryrefslogtreecommitdiff
path: root/include
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 /include
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 'include')
-rw-r--r--include/sfx2/viewsh.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/sfx2/viewsh.hxx b/include/sfx2/viewsh.hxx
index d3faf93eadc3..c748d957d503 100644
--- a/include/sfx2/viewsh.hxx
+++ b/include/sfx2/viewsh.hxx
@@ -122,20 +122,20 @@ enum class LOKDeviceFormFactor
class SfxViewFactory;
#define SFX_DECL_VIEWFACTORY(Class) \
private: \
- static SfxViewFactory *pFactory; \
+ static SfxViewFactory *m_pFactory; \
public: \
static SfxViewShell *CreateInstance(SfxViewFrame *pFrame, SfxViewShell *pOldView); \
static void RegisterFactory( SfxInterfaceId nPrio ); \
- static SfxViewFactory*Factory() { return pFactory; } \
+ static SfxViewFactory*Factory() { return m_pFactory; } \
static void InitFactory()
#define SFX_IMPL_NAMED_VIEWFACTORY(Class, AsciiViewName) \
- SfxViewFactory* Class::pFactory; \
+ SfxViewFactory* Class::m_pFactory; \
SfxViewShell* Class::CreateInstance(SfxViewFrame *pFrame, SfxViewShell *pOldView) \
{ return new Class(pFrame, pOldView); } \
void Class::RegisterFactory( SfxInterfaceId nPrio ) \
{ \
- pFactory = new SfxViewFactory(&CreateInstance,nPrio,AsciiViewName);\
+ m_pFactory = new SfxViewFactory(&CreateInstance,nPrio,AsciiViewName);\
InitFactory(); \
} \
void Class::InitFactory()