]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBox.C
cursor is no more damaging the background. L-shaped cursor is broken right now....
[lyx.git] / src / mathed / InsetMathBox.C
index 09f048e1056041c655eac608dccc8fcc8a4970f2..cdae7fdd89c55aa732d8c73467f00cb39debfe09 100644 (file)
 
 #include "InsetMathBox.h"
 #include "MathData.h"
-#include "MathMLStream.h"
+#include "MathStream.h"
 #include "MathStream.h"
 #include "support/std_ostream.h"
 
+
+namespace lyx {
+
 using std::string;
 using std::auto_ptr;
 
 
-InsetMathBox::InsetMathBox(string const & name)
+InsetMathBox::InsetMathBox(docstring const & name)
        : InsetMathNest(1), name_(name)
 {}
 
@@ -62,7 +65,10 @@ void InsetMathBox::draw(PainterInfo & pi, int x, int y) const
 }
 
 
-void InsetMathBox::infoize(std::ostream & os) const
+void InsetMathBox::infoize(odocstream & os) const
 {
        os << "Box: " << name_;
 }
+
+
+} // namespace lyx