]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insethfill.C
Strip out redundant includes (193 of 'em).
[lyx.git] / src / insets / insethfill.C
index cd3e8a420918970a2f81fc83e2a729d8b79844f3..3af0c0fdd40a1c1ae4dfdee4b9966b764b3d501c 100644 (file)
 
 #include <config.h>
 
-
 #include "insethfill.h"
-#include "support/LOstream.h"
 
 using std::ostream;
 
+
 InsetHFill::InsetHFill()
        : InsetCommand(InsetCommandParams("hfill"))
 {}
 
 
-int InsetHFill::latex(Buffer const *, ostream & os,
+int InsetHFill::latex(Buffer const &, ostream & os,
                      LatexRunParams const &) const
 {
        os << getCommand();
@@ -29,27 +28,27 @@ int InsetHFill::latex(Buffer const *, ostream & os,
 }
 
 
-int InsetHFill::ascii(Buffer const *, ostream & os, int) const
+int InsetHFill::ascii(Buffer const &, ostream & os, int) const
 {
        os << '\t';
        return 0;
 }
 
 
-int InsetHFill::linuxdoc(Buffer const *, std::ostream & os) const
+int InsetHFill::linuxdoc(Buffer const &, std::ostream & os) const
 {
        os << '\n';
        return 0;
 }
 
 
-int InsetHFill::docbook(Buffer const *, std::ostream & os, bool) const
+int InsetHFill::docbook(Buffer const &, std::ostream & os, bool) const
 {
        os << '\n';
        return 0;
 }
 
-void InsetHFill::write(Buffer const *, ostream & os) const
+void InsetHFill::write(Buffer const &, ostream & os) const
 {
        os << "\n\\hfill \n";
 }