starmath/source/node.cxx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-)
New commits: commit b55cd9c8cc3167a9efe8d59101f4aa6bbf068337 Author: Takeshi Abe <t...@fixedpoint.jp> Date: Sun Nov 27 03:55:57 2016 +0900 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 <c...@libreoffice.org> Reviewed-by: Takeshi Abe <t...@fixedpoint.jp> diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx index f650108..8494208 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 "; _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits