summaryrefslogtreecommitdiff
path: root/sw/source/core/docnode/ndsect.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-10-30 08:32:48 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-10-30 08:32:48 +0100
commit150fdfc77274909dd9281b97c1e166cac838c60e (patch)
tree04b885937f89e8e0c8612adeb4a473d7b41dd620 /sw/source/core/docnode/ndsect.cxx
parentbd0ec1e68dcbc344cbaa50e35608bab95925fcaf (diff)
sw: prefix members of SwNode
Change-Id: I3ce33c8ea0c09948785621785d199ece6eda128a
Diffstat (limited to 'sw/source/core/docnode/ndsect.cxx')
-rw-r--r--sw/source/core/docnode/ndsect.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/docnode/ndsect.cxx b/sw/source/core/docnode/ndsect.cxx
index 800c8ecfd9e3..e13f547b6125 100644
--- a/sw/source/core/docnode/ndsect.cxx
+++ b/sw/source/core/docnode/ndsect.cxx
@@ -915,7 +915,7 @@ SwSectionNode* SwNodes::InsertTextSection(SwNodeIndex const& rNdIdx,
// Attach all Sections in the NodeSection underneath the new one
if( ULONG_MAX == nSkipIdx )
- pNd->pStartOfSection = pSectNd;
+ pNd->m_pStartOfSection = pSectNd;
else if( n >= nSkipIdx )
nSkipIdx = ULONG_MAX;
@@ -963,9 +963,9 @@ SwSectionNode* SwNode::FindSectionNode()
{
if( IsSectionNode() )
return GetSectionNode();
- SwStartNode* pTmp = pStartOfSection;
+ SwStartNode* pTmp = m_pStartOfSection;
while( !pTmp->IsSectionNode() && pTmp->GetIndex() )
- pTmp = pTmp->pStartOfSection;
+ pTmp = pTmp->m_pStartOfSection;
return pTmp->GetSectionNode();
}