]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathEnv.C
Fix comment according to Enricos explanation
[lyx.git] / src / mathed / InsetMathEnv.C
index 73509a83a2c5f6d7c02b3e3710c0e98aecf7bb75..e86ec67b40c4403b39580439b1f57be59bd7d5e5 100644 (file)
 
 #include "InsetMathEnv.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;
 
 
-InsetMathEnv::InsetMathEnv(string const & name)
+InsetMathEnv::InsetMathEnv(docstring const & name)
        : InsetMathNest(1), name_(name)
 {}
 
@@ -59,7 +62,10 @@ void InsetMathEnv::normalize(NormalStream & os) const
 }
 
 
-void InsetMathEnv::infoize(std::ostream & os) const
+void InsetMathEnv::infoize(odocstream & os) const
 {
        os << "Env: " << name_;
 }
+
+
+} // namespace lyx