summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/frame.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-11-23 09:02:03 +0100
committerMiklos Vajna <vmiklos@collabora.com>2020-11-23 18:53:47 +0100
commit406e1d123500b1c40a32055c3876ab06e88370e8 (patch)
tree5b0038c6a28ca0f4112c214e65b467f66cf96c47 /sw/source/core/inc/frame.hxx
parent50b65bdf10a6b94758acebf12d29fd38db907122 (diff)
sw: prefix members of SwFrame, SwFrameAreaDefinition, SwLayVout and SwLineRect
See tdf#94879 for motivation. Change-Id: I93627e54ba9330e8e1ff2136ab00ecd743c0dd79 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106397 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/core/inc/frame.hxx')
-rw-r--r--sw/source/core/inc/frame.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/inc/frame.hxx b/sw/source/core/inc/frame.hxx
index 90930daeabee..d2dc6a15eaaa 100644
--- a/sw/source/core/inc/frame.hxx
+++ b/sw/source/core/inc/frame.hxx
@@ -148,7 +148,7 @@ private:
// #i65250#
// frame ID is now in general available - used for layout loop control
- static sal_uInt32 mnLastFrameId;
+ static sal_uInt32 snLastFrameId;
const sal_uInt32 mnFrameId;
protected:
@@ -315,7 +315,7 @@ class SW_DLLPUBLIC SwFrame : public SwFrameAreaDefinition, public SwClient, publ
friend void MakeNxt( SwFrame *pFrame, SwFrame *pNxt );
// cache for (border) attributes
- static SwCache *mpCache;
+ static SwCache *spCache;
SwRootFrame *mpRoot;
SwLayoutFrame *mpUpper;
@@ -502,9 +502,9 @@ public:
SwFrameType GetType() const { return mnFrameType; }
- static SwCache &GetCache() { return *mpCache; }
- static SwCache *GetCachePtr() { return mpCache; }
- static void SetCache( SwCache *pNew ) { mpCache = pNew; }
+ static SwCache &GetCache() { return *spCache; }
+ static SwCache *GetCachePtr() { return spCache; }
+ static void SetCache( SwCache *pNew ) { spCache = pNew; }
// change PrtArea size and FrameSize
SwTwips Shrink( SwTwips, bool bTst = false, bool bInfo = false );