]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathXYMatrix.C
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / InsetMathXYMatrix.C
index 7c71762638f78c81d062dc42acd69214d77e20cf..03dd13b65443a6d8966e63c8049892cd5fdebb19 100644 (file)
 #include <config.h>
 
 #include "InsetMathXYMatrix.h"
-#include "MathMLStream.h"
+#include "MathStream.h"
 #include "MathStream.h"
 
 #include "LaTeXFeatures.h"
 #include "support/std_ostream.h"
 
 
+namespace lyx {
+
+
 InsetMathXYMatrix::InsetMathXYMatrix()
        : InsetMathGrid(1, 1)
 {}
@@ -57,7 +60,7 @@ void InsetMathXYMatrix::write(WriteStream & os) const
 }
 
 
-void InsetMathXYMatrix::infoize(std::ostream & os) const
+void InsetMathXYMatrix::infoize(odocstream & os) const
 {
        os << "xymatrix ";
        InsetMathGrid::infoize(os);
@@ -78,3 +81,6 @@ void InsetMathXYMatrix::maple(MapleStream & os) const
        InsetMathGrid::maple(os);
        os << ')';
 }
+
+
+} // namespace lyx