summaryrefslogtreecommitdiff
path: root/sw/source/core/layout/laycache.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-11-09 08:59:09 +0100
committerMiklos Vajna <vmiklos@collabora.com>2020-11-09 09:38:04 +0100
commit78e0da267774a35f4abfef52f0ce74b1972128a4 (patch)
tree2c3388898c7e35f108b75fe07f38b54df8832d1a /sw/source/core/layout/laycache.cxx
parent59301a4ab8ffc1bb8d5516825627a9a371c640f0 (diff)
sw: prefix members of StackHack, SwActualSection, SwFrameHolder and ...
... SwOszControl See tdf#94879 for motivation. Change-Id: If36742218a4deca1b688ef8996702c5985310110 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105472 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/core/layout/laycache.cxx')
-rw-r--r--sw/source/core/layout/laycache.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/layout/laycache.cxx b/sw/source/core/layout/laycache.cxx
index f64c3251a24b..f28191d0600f 100644
--- a/sw/source/core/layout/laycache.cxx
+++ b/sw/source/core/layout/laycache.cxx
@@ -455,14 +455,14 @@ SwLayoutCache::~SwLayoutCache()
SwActualSection::SwActualSection( SwActualSection *pUp,
SwSectionFrame *pSect,
SwSectionNode *pNd ) :
- pUpper( pUp ),
- pSectFrame( pSect ),
- pSectNode( pNd )
+ m_pUpper( pUp ),
+ m_pSectFrame( pSect ),
+ m_pSectNode( pNd )
{
- if ( !pSectNode )
+ if ( !m_pSectNode )
{
const SwNodeIndex *pIndex = pSect->GetFormat()->GetContent().GetContentIdx();
- pSectNode = pIndex->GetNode().FindSectionNode();
+ m_pSectNode = pIndex->GetNode().FindSectionNode();
}
}