summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-11-02 09:06:35 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-11-02 09:11:26 +0100
commitd77368387999918bb703e3ad974497c4422c2e50 (patch)
tree92ae1d5c7e959a8d4c7ef69335fbcd6d35ae9d4b /sw/source
parente9c862e9f9ba3cc2eb09c146c8dfd2aaa5cf57bc (diff)
sw: prefix members of SwContentNode
Change-Id: Iecb7cd82d88bd1ee82f074e17319e5ce095e2690
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/core/docnode/node.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/source/core/docnode/node.cxx b/sw/source/core/docnode/node.cxx
index 7d67454dd12b..1ecd44b818fe 100644
--- a/sw/source/core/docnode/node.cxx
+++ b/sw/source/core/docnode/node.cxx
@@ -995,7 +995,7 @@ SwContentNode::SwContentNode( const SwNodeIndex &rWhere, const sal_uInt8 nNdType
SwFormatColl *pColl )
: SwModify( pColl ), // CrsrsShell, FrameFormat,
SwNode( rWhere, nNdType ),
- pCondColl( 0 ),
+ m_pCondColl( 0 ),
mbSetModifyAtAttr( false )
{
}
@@ -1006,7 +1006,7 @@ SwContentNode::~SwContentNode()
// Thus, we need to delete all Frames in the dependency list.
DelFrms(false);
- delete pCondColl;
+ delete m_pCondColl;
if ( mpAttrSet.get() && mbSetModifyAtAttr )
const_cast<SwAttrSet*>(static_cast<const SwAttrSet*>(mpAttrSet.get()))->SetModifyAtAttr( 0 );
@@ -1698,7 +1698,7 @@ const SfxPoolItem* SwContentNode::GetNoCondAttr( sal_uInt16 nWhich,
bool bInParents ) const
{
const SfxPoolItem* pFnd = 0;
- if( pCondColl && pCondColl->GetRegisteredIn() )
+ if( m_pCondColl && m_pCondColl->GetRegisteredIn() )
{
if( !GetpSwAttrSet() || ( SfxItemState::SET != GetpSwAttrSet()->GetItemState(
nWhich, false, &pFnd ) && bInParents ))
@@ -1782,15 +1782,15 @@ bool SwContentNode::CanJoinPrev( SwNodeIndex* pIdx ) const
//FEATURE::CONDCOLL
void SwContentNode::SetCondFormatColl( SwFormatColl* pColl )
{
- if( (!pColl && pCondColl) || ( pColl && !pCondColl ) ||
- ( pColl && pColl != pCondColl->GetRegisteredIn() ) )
+ if( (!pColl && m_pCondColl) || ( pColl && !m_pCondColl ) ||
+ ( pColl && pColl != m_pCondColl->GetRegisteredIn() ) )
{
SwFormatColl* pOldColl = GetCondFormatColl();
- delete pCondColl;
+ delete m_pCondColl;
if( pColl )
- pCondColl = new SwDepend( this, pColl );
+ m_pCondColl = new SwDepend( this, pColl );
else
- pCondColl = 0;
+ m_pCondColl = 0;
if( GetpSwAttrSet() )
{
@@ -1934,7 +1934,7 @@ void SwContentNode::ChkCondColl()
if( pCColl )
SetCondFormatColl( pCColl->GetTextFormatColl() );
- else if( pCondColl )
+ else if( m_pCondColl )
SetCondFormatColl( 0 );
}
}