]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathComment.cpp
We only support gcc >= 4.9.
[lyx.git] / src / mathed / InsetMathComment.cpp
index ea502d1aa2ef1fd7a7ab504c3799f5dc49cc489e..273253ec0e7fa3c7228a3eaafb6e27963438b25a 100644 (file)
@@ -71,7 +71,7 @@ void InsetMathComment::drawT(TextPainter & pain, int x, int y) const
 }
 
 
-void InsetMathComment::write(WriteStream & os) const
+void InsetMathComment::write(TeXMathStream & os) const
 {
        os << '%' << cell(0) << "\n";
 }
@@ -83,9 +83,9 @@ void InsetMathComment::maple(MapleStream & os) const
 }
 
 
-void InsetMathComment::mathmlize(MathStream & os) const
+void InsetMathComment::mathmlize(MathMLStream & ms) const
 {
-       os << MTag("comment") << cell(0) << ETag("comment");
+       ms << MTag("comment") << cell(0) << ETag("comment");
 }