[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - starmath/source

Takeshi Abe tabe at fixedpoint.jp
Mon Nov 28 00:58:13 UTC 2016


 starmath/source/node.cxx |   20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

New commits:
commit b55cd9c8cc3167a9efe8d59101f4aa6bbf068337
Author: Takeshi Abe <tabe at 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 <ci at libreoffice.org>
    Reviewed-by: Takeshi Abe <tabe at 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 ";


More information about the Libreoffice-commits mailing list