]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDelim.cpp
typo
[lyx.git] / src / mathed / InsetMathDelim.cpp
index 95a0883cceb81a8e8edbf8e92575f44e1a39c37a..e2bd5ac406ffab0125689d1ad0b8768a332fdf3e 100644 (file)
@@ -181,16 +181,17 @@ void InsetMathDelim::mathematica(MathematicaStream & os) const
 
 void InsetMathDelim::mathmlize(MathMLStream & ms) const
 {
-       ms << "<" << from_ascii(ms.namespacedTag("mo")) << " form='prefix' fence='true' stretchy='true' symmetric='true'>"
+       ms << MTag("mrow")
+          << MTagInline("mo", "form='prefix' fence='true' stretchy='true' symmetric='true'>")
           << convertDelimToXMLEscape(left_, ms.xmlMode())
-          << "</" << from_ascii(ms.namespacedTag("mo")) << ">"
+          << ETagInline("mo")
           << "\n"
           << cell(0)
           << "\n"
-          << "<" << from_ascii(ms.namespacedTag("mo")) << " form='postfix' fence='true' stretchy='true' symmetric='true'>"
+          << MTagInline("mo", "form='postfix' fence='true' stretchy='true' symmetric='true'>")
           << convertDelimToXMLEscape(right_, ms.xmlMode())
-          << "</" << from_ascii(ms.namespacedTag("mo")) << ">"
-          << "\n";
+          << ETagInline("mo")
+          << ETag("mrow");
 }