summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2021-04-26 08:01:55 +0200
committerMiklos Vajna <vmiklos@collabora.com>2021-04-26 09:47:51 +0200
commit9c62b71cf59a043031a2e3bee13de43bf49e18bb (patch)
tree87b628edcc1ca5ede6f4e76d7602061b448ff28c /sw/inc
parent03b2f7c15093ada5c6140960aa87531d4391b2b0 (diff)
sw: prefix members of SaveBox, SaveLine, SwDocStyleSheet and ...
... SwXTextTableRow See tdf#94879 for motivation. Change-Id: I1d27caebc8820f884114c4a8c0b3cbcdf35e86a7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114639 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/docstyle.hxx24
-rw-r--r--sw/inc/unotbl.hxx2
2 files changed, 13 insertions, 13 deletions
diff --git a/sw/inc/docstyle.hxx b/sw/inc/docstyle.hxx
index 3ac7b308315d..96731e758c39 100644
--- a/sw/inc/docstyle.hxx
+++ b/sw/inc/docstyle.hxx
@@ -48,17 +48,17 @@ class SW_DLLPUBLIC SwDocStyleSheet final : public SfxStyleSheetBase
friend class SwDocStyleSheetPool;
friend class SwStyleSheetIterator;
- SwCharFormat* pCharFormat;
- SwTextFormatColl* pColl;
- SwFrameFormat* pFrameFormat;
- const SwPageDesc* pDesc;
- const SwNumRule* pNumRule;
- SwTableAutoFormat* pTableFormat;
- const SwBoxAutoFormat* pBoxFormat;
- SwDoc& rDoc;
- SfxItemSet aCoreSet;
-
- bool bPhysical;
+ SwCharFormat* m_pCharFormat;
+ SwTextFormatColl* m_pColl;
+ SwFrameFormat* m_pFrameFormat;
+ const SwPageDesc* m_pDesc;
+ const SwNumRule* m_pNumRule;
+ SwTableAutoFormat* m_pTableFormat;
+ const SwBoxAutoFormat* m_pBoxFormat;
+ SwDoc& m_rDoc;
+ SfxItemSet m_aCoreSet;
+
+ bool m_bPhysical;
/// Make empty shell a real StyleSheet (Core).
SAL_DLLPRIVATE void Create();
@@ -86,7 +86,7 @@ public:
void SetFamily(SfxStyleFamily eFam) { nFamily = eFam; }
- bool IsPhysical() const { return bPhysical; }
+ bool IsPhysical() const { return m_bPhysical; }
void SetPhysical(bool bPhys);
virtual void SetHidden( bool bHidden ) override;
diff --git a/sw/inc/unotbl.hxx b/sw/inc/unotbl.hxx
index e7d9a224e259..bcea846578d2 100644
--- a/sw/inc/unotbl.hxx
+++ b/sw/inc/unotbl.hxx
@@ -153,7 +153,7 @@ class SwXTextTableRow final
, public SvtListener
{
SwFrameFormat* m_pFormat;
- SwTableLine* pLine;
+ SwTableLine* m_pLine;
const SfxItemPropertySet* m_pPropSet;
SwFrameFormat* GetFrameFormat() { return m_pFormat; }