From 82acd281d3326ea051a7ea2dd24af2f93981abf4 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Thu, 29 Oct 2015 08:34:09 +0100 Subject: sw: prefix members of SwStartNode Change-Id: Ibb3b33681f4c33794e07b40989709e8f292f2084 --- sw/inc/node.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sw/inc') 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(this) : pStartOfSection; - return pStNd->pEndOfSection->GetIndex(); + return pStNd->m_pEndOfSection->GetIndex(); } inline const SwEndNode* SwNode::EndOfSectionNode() const { const SwStartNode* pStNd = IsStartNode() ? static_cast(this) : pStartOfSection; - return pStNd->pEndOfSection; + return pStNd->m_pEndOfSection; } inline SwEndNode* SwNode::EndOfSectionNode() { const SwStartNode* pStNd = IsStartNode() ? static_cast(this) : pStartOfSection; - return pStNd->pEndOfSection; + return pStNd->m_pEndOfSection; } inline SwNodes& SwNode::GetNodes() -- cgit