[Libreoffice-commits] core.git: starmath/source

dante (via logerrit) logerrit at kemper.freedesktop.org
Mon Mar 15 06:32:01 UTC 2021


 starmath/source/mathml/starmathdatabase.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 9b9d4da7c688b884c428cda6900415fe891f88c2
Author:     dante <dante19031999 at gmail.com>
AuthorDate: Sun Mar 14 16:55:24 2021 +0100
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Mon Mar 15 07:31:26 2021 +0100

    Correct text command on mathml import
    
    Change-Id: Ie3c2433606d1994feaa349b7664fd7b3d07ffcd5
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112475
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/starmath/source/mathml/starmathdatabase.cxx b/starmath/source/mathml/starmathdatabase.cxx
index d2c54931ffff..9a45ff0edacf 100644
--- a/starmath/source/mathml/starmathdatabase.cxx
+++ b/starmath/source/mathml/starmathdatabase.cxx
@@ -91,9 +91,9 @@ SmToken starmathdatabase::Identify_SmXMLOperatorContext_Impl(sal_Unicode cChar,
                 return SmToken(TSLASH, MS_SLASH, "slash", TG::Product, 0);
         case MS_BACKSLASH:
             if (bIsStretchy)
-                return SmToken(TWIDEBACKSLASH, MS_BACKSLASH, "bslash", TG::Product, 0);
+                return SmToken(TWIDEBACKSLASH, MS_BACKSLASH, "widebslash", TG::Product, 0);
             else
-                return SmToken(TBACKSLASH, MS_BACKSLASH, "slash", TG::Product, 0);
+                return SmToken(TBACKSLASH, MS_BACKSLASH, "bslash", TG::Product, 0);
         case MS_DEF:
             return SmToken(TDEF, MS_DEF, "def", TG::Relation, 0);
         case MS_LINE:


More information about the Libreoffice-commits mailing list