diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-01-15 16:39:17 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2015-01-15 17:41:03 +0900 |
commit | f95a3a409a056a0b0bc8e9d56a0c3bff42c72355 (patch) | |
tree | da952c17a0de470d9a75514a42e84017e230ffbf /starmath | |
parent | 107bae41a8b78e6da563c20aa4e9a62050c74f19 (diff) |
no need to compare it with true
Change-Id: I9c825663508abdc7efa9cf2801770acc2b79174a
Diffstat (limited to 'starmath')
-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 521560209cc5..31e4962683c4 100644 --- a/starmath/source/parse.cxx +++ b/starmath/source/parse.cxx @@ -1519,7 +1519,7 @@ void SmParser::Term(bool bGroupNumberIdent) bool bIsAttr; sal_uInt16 n = 0; - while (true == (bIsAttr = TokenInGroup(TGATTRIBUT)) + while ( (bIsAttr = TokenInGroup(TGATTRIBUT)) || TokenInGroup(TGFONTATTR)) { aArray.resize(n + 1); |