]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathExInt.cpp
typo
[lyx.git] / src / mathed / InsetMathExInt.cpp
index f0242c0bdb1893a549c9bf582ac1348f562843cc..4812eec997eaf89f4bd779dfa869e78ec36bd0f5 100644 (file)
@@ -123,7 +123,7 @@ void InsetMathExInt::mathematica(MathematicaStream & os) const
 }
 
 
-void InsetMathExInt::mathmlize(MathStream & ms) const
+void InsetMathExInt::mathmlize(MathMLStream & ms) const
 {
        // At the moment, we are not extracting sums and the like for MathML.
        // If we should decide to do so later, then we'll need to re-merge
@@ -142,9 +142,9 @@ void InsetMathExInt::mathmlize(MathStream & ms) const
        sym.mathmlize(ms);
        ms << ETag("mrow");
        if (lower)
-               ms << MTag("mrow") << cell(2) << ETag("mrow");
+               ms << cell(2);
        if (upper)
-               ms << MTag("mrow") << cell(3) << ETag("mrow");
+               ms << cell(3);
        if (lower && upper)
                ms << ETag("msubsup");
        else if (lower)
@@ -190,7 +190,7 @@ void InsetMathExInt::htmlize(HtmlStream & os) const
 }
 
 
-void InsetMathExInt::write(WriteStream &) const
+void InsetMathExInt::write(TeXMathStream &) const
 {
        LYXERR0("should not happen");
 }