summaryrefslogtreecommitdiff
path: root/starmath/source/node.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'starmath/source/node.cxx')
-rw-r--r--starmath/source/node.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx
index 0cbb60b3f206..a37236db4224 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -381,13 +381,13 @@ SmStructureNode::~SmStructureNode()
void SmStructureNode::SetSubNodes(SmNode *pFirst, SmNode *pSecond, SmNode *pThird)
{
size_t nSize = pThird ? 3 : (pSecond ? 2 : (pFirst ? 1 : 0));
- aSubNodes.resize( nSize );
+ maSubNodes.resize( nSize );
if (pFirst)
- aSubNodes[0] = pFirst;
+ maSubNodes[0] = pFirst;
if (pSecond)
- aSubNodes[1] = pSecond;
+ maSubNodes[1] = pSecond;
if (pThird)
- aSubNodes[2] = pThird;
+ maSubNodes[2] = pThird;
ClaimPaternity();
}
@@ -395,7 +395,7 @@ void SmStructureNode::SetSubNodes(SmNode *pFirst, SmNode *pSecond, SmNode *pThir
void SmStructureNode::SetSubNodes(const SmNodeArray &rNodeArray)
{
- aSubNodes = rNodeArray;
+ maSubNodes = rNodeArray;
ClaimPaternity();
}
@@ -408,13 +408,13 @@ bool SmStructureNode::IsVisible() const
sal_uInt16 SmStructureNode::GetNumSubNodes() const
{
- return sal::static_int_cast<sal_uInt16>(aSubNodes.size());
+ return sal::static_int_cast<sal_uInt16>(maSubNodes.size());
}
SmNode * SmStructureNode::GetSubNode(sal_uInt16 nIndex)
{
- return aSubNodes[nIndex];
+ return maSubNodes[nIndex];
}