]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSqrt.cpp
typo
[lyx.git] / src / mathed / InsetMathSqrt.cpp
index 7416c332f17593a6af750a8c903af1588ee03545..7cfe028c242cec0c09ba42083db3f9a1ecba29ff 100644 (file)
@@ -69,7 +69,7 @@ void InsetMathSqrt::drawT(TextPainter & /*pain*/, int /*x*/, int /*y*/) const
 }
 
 
-void InsetMathSqrt::write(WriteStream & os) const
+void InsetMathSqrt::write(TeXMathStream & os) const
 {
        MathEnsurer ensurer(os);
        os << "\\sqrt{" << cell(0) << '}';
@@ -98,9 +98,9 @@ void InsetMathSqrt::octave(OctaveStream & os) const
 }
 
 
-void InsetMathSqrt::mathmlize(MathStream & os) const
+void InsetMathSqrt::mathmlize(MathMLStream & ms) const
 {
-       os << MTag("msqrt") << cell(0) << ETag("msqrt");
+       ms << MTag("msqrt") << cell(0) << ETag("msqrt");
 }