]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBrace.cpp
We only support gcc >= 4.9.
[lyx.git] / src / mathed / InsetMathBrace.cpp
index 3a452c03862a94f8763a218421994a1953324657..b0ce242f07b82db4af4e0005d2327d10ae03582e 100644 (file)
@@ -72,7 +72,7 @@ void InsetMathBrace::draw(PainterInfo & pi, int x, int y) const
 }
 
 
-void InsetMathBrace::write(WriteStream & os) const
+void InsetMathBrace::write(TeXMathStream & os) const
 {
        os << '{' << cell(0) << '}';
 }
@@ -96,9 +96,9 @@ void InsetMathBrace::octave(OctaveStream & os) const
 }
 
 
-void InsetMathBrace::mathmlize(MathStream & os) const
+void InsetMathBrace::mathmlize(MathMLStream & ms) const
 {
-       os << MTag("mrow") << cell(0) << ETag("mrow");
+       ms << MTag("mrow") << cell(0) << ETag("mrow");
 }