]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMath.cpp
Change the interface to a paragraph's layout. We still store a LayoutPtr, but now...
[lyx.git] / src / mathed / InsetMath.cpp
index 49d381cd94c3bea1555561c962dd6ac33b104889..25c4b3fdc826d6d5315233a3f99abac82df2242f 100644 (file)
 #include "InsetMath.h"
 #include "MathData.h"
 #include "MathStream.h"
-#include "support/gettext.h"
-#include "support/debug.h"
 
+#include "support/debug.h"
 #include "support/docstream.h"
+#include "support/gettext.h"
 #include "support/lstrings.h"
 #include "support/textutils.h"
 
 #include <boost/assert.hpp>
 
-using std::endl;
-
+using namespace std;
 
 namespace lyx {
 
@@ -78,8 +77,7 @@ void InsetMath::write(WriteStream & os) const
 }
 
 
-int InsetMath::plaintext(Buffer const &, odocstream &,
-                        OutputParams const &) const
+int InsetMath::plaintext(odocstream &, OutputParams const &) const
 {
        // all math plain text output shall take place in InsetMathHull
        BOOST_ASSERT(false);
@@ -134,7 +132,7 @@ HullType InsetMath::getType() const
 }
 
 
-std::ostream & operator<<(std::ostream & os, MathAtom const & at)
+ostream & operator<<(ostream & os, MathAtom const & at)
 {
        odocstringstream oss;
        WriteStream wi(oss, false, false);