diff options
Diffstat (limited to 'starmath/source/parse.cxx')
-rw-r--r-- | starmath/source/parse.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx index 861a9f1af91d..89048b3d9998 100644 --- a/starmath/source/parse.cxx +++ b/starmath/source/parse.cxx @@ -1433,7 +1433,7 @@ SmNode *SmParser::DoTerm(bool bGroupNumberIdent) bool bIsAttr; while ( (bIsAttr = TokenInGroup(TG::Attribute)) || TokenInGroup(TG::FontAttr)) - aStack.push((bIsAttr) ? DoAttribut() : DoFontAttribut()); + aStack.push(bIsAttr ? DoAttribut() : DoFontAttribut()); SmNode *pFirstNode = DoPower(); while (!aStack.empty()) |