]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetmarginal.C
some reindentation, revert workarea xpos++, constify, remove all traces of LyXParagra...
[lyx.git] / src / insets / insetmarginal.C
index a56694f96025b4366e3cad86cfb8795430d90b16..4a631bd8ccef46150748636aa2542e3fd76bb1d5 100644 (file)
@@ -23,9 +23,6 @@
 #include "support/LOstream.h"
 #include "debug.h"
 
-using std::ostream;
-using std::endl;
-
 
 InsetMarginal::InsetMarginal()
        : InsetFootlike()
@@ -52,11 +49,11 @@ string const InsetMarginal::EditMessage() const
 
 
 int InsetMarginal::Latex(Buffer const * buf,
-                        ostream & os, bool fragile, bool fp) const
+                        std::ostream & os, bool fragile, bool fp) const
 {
        os << "\\marginpar{%\n";
        
-       int i = inset.Latex(buf, os, fragile, fp);
+       int const i = inset.Latex(buf, os, fragile, fp);
        os << "}%\n";
        
        return i + 2;