]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMath.cpp
Whitespace.
[lyx.git] / src / mathed / InsetMath.cpp
index a5cd28a2841f3770143f1dd39db85ac70e9c77c8..a1cc8d8049e940914e2d1510ab5050f228c97e6d 100644 (file)
@@ -120,13 +120,13 @@ void InsetMath::mathematica(MathematicaStream & os) const
 }
 
 
-docstring InsetMath::mathmlize(MathStream & os) const
+void InsetMath::mathmlize(MathStream & os) const
 {
+       os << "<!-- " << from_utf8(insetName(lyxCode())) << " -->";
        os << MTag("mi");
        NormalStream ns(os.os());
        normalize(ns);
        os << ETag("mi");
-       return docstring();
 }