diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2016-11-27 03:55:57 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2016-11-28 09:47:12 +0900 |
commit | 142618ecae472e535c582c0fb357d2a9a76655f1 (patch) | |
tree | 9dbdb39d425ae79e1797d30c4f3c0c5c43c12c9a /starmath | |
parent | f567ee19954612d6ebd2c8f6a809478f7c0ee568 (diff) |
starmath: Separate color name and operand by space
Otherwise, errors happen at MathML import.
Change-Id: I17037b430710ea4d26340e7ce13c7972a76f614f
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/node.cxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx index 39041333533f..ca21a7ed4f42 100644 --- a/starmath/source/node.cxx +++ b/starmath/source/node.cxx @@ -1780,34 +1780,34 @@ void SmFontNode::CreateTextFromNode(OUString &rText) rText += "color yellow "; break; case TTEAL: - rText += "color teal"; + rText += "color teal "; break; case TSILVER: - rText += "color silver"; + rText += "color silver "; break; case TGRAY: - rText += "color gray"; + rText += "color gray "; break; case TMAROON: - rText += "color maroon"; + rText += "color maroon "; break; case TPURPLE: - rText += "color purple"; + rText += "color purple "; break; case TLIME: - rText += "color lime"; + rText += "color lime "; break; case TOLIVE: - rText += "color olive"; + rText += "color olive "; break; case TNAVY: - rText += "color navy"; + rText += "color navy "; break; case TAQUA: - rText += "color aqua"; + rText += "color aqua "; break; case TFUCHSIA: - rText += "color fuchsia"; + rText += "color fuchsia "; break; case TSANS: rText += "font sans "; |