From 9b9d4da7c688b884c428cda6900415fe891f88c2 Mon Sep 17 00:00:00 2001 From: dante Date: Sun, 14 Mar 2021 16:55:24 +0100 Subject: 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 --- starmath/source/mathml/starmathdatabase.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'starmath/source') 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: -- cgit