summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--starmath/source/mathmlimport.cxx6
-rw-r--r--starmath/source/parse.cxx8
2 files changed, 5 insertions, 9 deletions
diff --git a/starmath/source/mathmlimport.cxx b/starmath/source/mathmlimport.cxx
index 8946c6f5a59f..2690824939bd 100644
--- a/starmath/source/mathmlimport.cxx
+++ b/starmath/source/mathmlimport.cxx
@@ -2082,15 +2082,13 @@ SvXMLImportContext *SmXMLDocContext_Impl::CreateChildContext(
void SmXMLDocContext_Impl::EndElement()
{
- SmNodeArray ContextArray;
- ContextArray.resize(1);
SmNodeStack &rNodeStack = GetSmImport().GetNodeStack();
- ContextArray[0] = popOrZero(rNodeStack);
+ SmNode *pContextNode = popOrZero(rNodeStack);
SmToken aDummy;
std::unique_ptr<SmStructureNode> pSNode(new SmLineNode(aDummy));
- pSNode->SetSubNodes(ContextArray);
+ pSNode->SetSubNodes(pContextNode, nullptr);
rNodeStack.push_front(std::move(pSNode));
SmNodeArray LineArray;
diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx
index 1e11be32fa91..7a6c99551e68 100644
--- a/starmath/source/parse.cxx
+++ b/starmath/source/parse.cxx
@@ -2138,11 +2138,9 @@ void SmParser::DoBinom()
DoSum();
DoSum();
- SmNodeArray ExpressionArray(2);
- ExpressionArray[1] = popOrZero(m_aNodeStack);
- ExpressionArray[0] = popOrZero(m_aNodeStack);
-
- pSNode->SetSubNodes(ExpressionArray);
+ SmNode *pSecond = popOrZero(m_aNodeStack);
+ SmNode *pFirst = popOrZero(m_aNodeStack);
+ pSNode->SetSubNodes(pFirst, pSecond);
m_aNodeStack.push_front(std::move(pSNode));
}