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