]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathExFunc.cpp
typo
[lyx.git] / src / mathed / InsetMathExFunc.cpp
index 9782e25cf3ff2aefdbe56b06d53aa1ca5fdf9cc1..c450cceb9718e793251876bea6bbfb61abb0aff4 100644 (file)
@@ -122,14 +122,14 @@ void InsetMathExFunc::mathematica(MathematicaStream & os) const
 }
 
 
-void InsetMathExFunc::mathmlize(MathStream & ms) const
+void InsetMathExFunc::mathmlize(MathMLStream & ms) const
 {
-       ms << "<" << from_ascii(ms.namespacedTag("mi")) << ">"
+       ms << MTagInline("mi")
           << name_
-       << "</" << from_ascii(ms.namespacedTag("mi")) << ">"
-          << "<" << from_ascii(ms.namespacedTag("mo")) << ">"
+       << ETagInline("mi")
+          << MTagInline("mo")
           << "&af;"
-          << "</" << from_ascii(ms.namespacedTag("mo")) << ">"
+          << ETagInline("mo")
           << cell(0);
 }