summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2016-11-27 03:55:57 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2016-11-28 00:57:51 +0000
commitb55cd9c8cc3167a9efe8d59101f4aa6bbf068337 (patch)
tree8c94c5616ac6724c397373ab6c005a148b170bcc /starmath
parent5db3eff8bea4b4d907251c46bc30d1114daba3bc (diff)
starmath: Separate color name and operand by space
Otherwise, errors happen at MathML import. Change-Id: I17037b430710ea4d26340e7ce13c7972a76f614f Reviewed-on: https://gerrit.libreoffice.org/31249 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/node.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx
index f650108664ab..84942089915d 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -1787,34 +1787,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 ";