]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insethfill.C
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insethfill.C
index cd3e8a420918970a2f81fc83e2a729d8b79844f3..07007bd038e57d0b9be656e43021315aaf9403b1 100644 (file)
@@ -21,7 +21,7 @@ InsetHFill::InsetHFill()
 {}
 
 
-int InsetHFill::latex(Buffer const *, ostream & os,
+int InsetHFill::latex(Buffer const &, ostream & os,
                      LatexRunParams const &) const
 {
        os << getCommand();
@@ -29,27 +29,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";
 }