diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2017-03-23 00:16:57 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2017-03-22 18:03:54 +0000 |
commit | a69632cc1fdc931adcab4751607f3dd79b8cf771 (patch) | |
tree | e3745267ccd7b0f59fccab6e702cf53bb9d044ec /starmath/inc/parse.hxx | |
parent | b396bc042dad1d553ebf51897ef012c08c41a86a (diff) |
starmath: Make SmParser::DoPower() return SmNode
instead of pushing it to the stack.
Change-Id: I7b1640e1b3f835c06726941adfe6d212853f3af6
Reviewed-on: https://gerrit.libreoffice.org/35537
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath/inc/parse.hxx')
-rw-r--r-- | starmath/inc/parse.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx index 6c3e7dbe7a78..d158c3995151 100644 --- a/starmath/inc/parse.hxx +++ b/starmath/inc/parse.hxx @@ -69,7 +69,7 @@ class SmParser void DoProduct(); SmNode *DoSubSup(TG nActiveGroup, SmNode *pGivenNode); SmNode *DoOpSubSup(); - void DoPower(); + SmNode *DoPower(); SmBlankNode *DoBlank(); SmNode *DoTerm(bool bGroupNumberIdent); SmNode *DoEscape(); |