]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBig.cpp
MathML stream allows for name spaces.
[lyx.git] / src / mathed / InsetMathBig.cpp
index 889f8d4f97842e2e926a43fca3e2272e15a0da96..5e89d4e79c720af3fe40c41bb64a8a58af9f30b0 100644 (file)
@@ -135,11 +135,12 @@ void InsetMathBig::normalize(NormalStream & os) const
 }
 
 
-void InsetMathBig::mathmlize(MathStream & os) const
+void InsetMathBig::mathmlize(MathStream & ms) const
 {
-       os << "<mo form='prefix' fence='true' stretchy='true' symmetric='true'>"
+       ms << "<" << from_ascii(ms.namespacedTag("mo"))
+          << " form='prefix' fence='true' stretchy='true' symmetric='true'>"
           << convertDelimToXMLEscape(delim_)
-          << "</mo>";
+          << "</" << from_ascii(ms.namespacedTag("mo")) << ">";
 }