summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordante <dante19031999@gmail.com>2021-03-14 16:55:24 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-03-15 07:31:26 +0100
commit9b9d4da7c688b884c428cda6900415fe891f88c2 (patch)
tree7f7ca6799ae58c730b7c1e071c91d5e372f4cde0
parent50ef3d86ee8567bd5c84ff9aacc966675fe401cc (diff)
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@collabora.co.uk>
-rw-r--r--starmath/source/mathml/starmathdatabase.cxx4
1 files changed, 2 insertions, 2 deletions
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: