summaryrefslogtreecommitdiff
path: root/starmath/source/mathmlimport.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2014-11-09 01:10:32 +0900
committerNoel Grandin <noelgrandin@gmail.com>2014-11-11 11:42:42 +0000
commitda2d24a28504d2a3e6fa147e205ffbf30b1112ea (patch)
tree107053aacdae2b4a0a1e860fa58ca765d1657f79 /starmath/source/mathmlimport.hxx
parent775d99c87bed9bd7d9dc10e1110990bd2c5d905e (diff)
stop duplicate definition of lcl_popOrZero()
This renames it to popOrZero() in node.hxx. Also one more call site found in mathmlimport.hxx. Change-Id: I3f0281315146347280d0836ceadcfdf9c80fa166 Reviewed-on: https://gerrit.libreoffice.org/12310 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'starmath/source/mathmlimport.hxx')
-rw-r--r--starmath/source/mathmlimport.hxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/starmath/source/mathmlimport.hxx b/starmath/source/mathmlimport.hxx
index f7326e75961a..4bcf594c7827 100644
--- a/starmath/source/mathmlimport.hxx
+++ b/starmath/source/mathmlimport.hxx
@@ -245,11 +245,7 @@ public:
SmNodeStack & GetNodeStack() { return aNodeStack; }
SmNode *GetTree()
{
- if (aNodeStack.empty())
- return 0;
- SmNode* result = aNodeStack.top();
- aNodeStack.pop();
- return result;
+ return popOrZero(aNodeStack);
}
bool GetSuccess() { return bSuccess; }