summaryrefslogtreecommitdiff
path: root/sw/source/core/fields
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-10-28 09:01:09 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-10-28 09:06:09 +0100
commit8c85e746dc52bf8ada89d4be6d193a0760af1b21 (patch)
tree7ac0571481e9ba5e0190fa22778528dd61312444 /sw/source/core/fields
parentac630469789b8b1fd93d3ae90acae83ed463d756 (diff)
sw: prefix members of SwTableBox
Change-Id: If4c4a043f3d9c2e1e89eb4199d33cd39f502c56e
Diffstat (limited to 'sw/source/core/fields')
-rw-r--r--sw/source/core/fields/cellfml.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/fields/cellfml.cxx b/sw/source/core/fields/cellfml.cxx
index b369311d2c64..1eda37bc14a8 100644
--- a/sw/source/core/fields/cellfml.cxx
+++ b/sw/source/core/fields/cellfml.cxx
@@ -81,7 +81,7 @@ double SwTableBox::GetValue( SwTableCalcPara& rCalcPara ) const
rCalcPara.rCalc.SetCalcError( CALC_SYNTAX ); // default: error
// no content box?
- if( !pSttNd )
+ if( !m_pStartNode )
return nRet;
if( rCalcPara.IncStackCnt() )
@@ -138,7 +138,7 @@ double SwTableBox::GetValue( SwTableCalcPara& rCalcPara ) const
break;
}
- SwTextNode* pTextNd = pDoc->GetNodes()[ pSttNd->GetIndex() + 1 ]->GetTextNode();
+ SwTextNode* pTextNd = pDoc->GetNodes()[ m_pStartNode->GetIndex() + 1 ]->GetTextNode();
if( !pTextNd )
break;