summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-10-29 08:34:09 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-10-29 08:38:37 +0100
commit82acd281d3326ea051a7ea2dd24af2f93981abf4 (patch)
tree8798078ecfc74ab3b15b34d9ff7bd0751fe4324d /sw/inc
parent7cdbde4867b14ae382262dc394ba83e609a8eecf (diff)
sw: prefix members of SwStartNode
Change-Id: Ibb3b33681f4c33794e07b40989709e8f292f2084
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/node.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/node.hxx b/sw/inc/node.hxx
index 9d070245f79d..2bb668d49c64 100644
--- a/sw/inc/node.hxx
+++ b/sw/inc/node.hxx
@@ -303,8 +303,8 @@ class SwStartNode: public SwNode
friend class SwNodes;
friend class SwEndNode; ///< to set the theEndOfSection !!
- SwEndNode* pEndOfSection;
- SwStartNodeType eSttNdTyp;
+ SwEndNode* m_pEndOfSection;
+ SwStartNodeType m_eStartNodeType;
/// for the initial StartNode
SwStartNode( SwNodes& rNodes, sal_uLong nPos );
@@ -316,7 +316,7 @@ protected:
public:
DECL_FIXEDMEMPOOL_NEWDEL(SwStartNode)
- SwStartNodeType GetStartNodeType() const { return eSttNdTyp; }
+ SwStartNodeType GetStartNodeType() const { return m_eStartNodeType; }
/// Call ChkCondcoll to all ContentNodes of section.
void CheckSectionCondColl() const;
@@ -684,17 +684,17 @@ inline sal_uLong SwNode::StartOfSectionIndex() const
inline sal_uLong SwNode::EndOfSectionIndex() const
{
const SwStartNode* pStNd = IsStartNode() ? static_cast<const SwStartNode*>(this) : pStartOfSection;
- return pStNd->pEndOfSection->GetIndex();
+ return pStNd->m_pEndOfSection->GetIndex();
}
inline const SwEndNode* SwNode::EndOfSectionNode() const
{
const SwStartNode* pStNd = IsStartNode() ? static_cast<const SwStartNode*>(this) : pStartOfSection;
- return pStNd->pEndOfSection;
+ return pStNd->m_pEndOfSection;
}
inline SwEndNode* SwNode::EndOfSectionNode()
{
const SwStartNode* pStNd = IsStartNode() ? static_cast<const SwStartNode*>(this) : pStartOfSection;
- return pStNd->pEndOfSection;
+ return pStNd->m_pEndOfSection;
}
inline SwNodes& SwNode::GetNodes()