]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insethfill.C
Final touch 'inset display()'; fix 'is a bit silly' bug
[lyx.git] / src / insets / insethfill.C
index 62f62f8b4ca54a714d9f2847993c3d0deaab6e7d..8e3eedb5c78767d2de6b1d531802a7aeb6e19028 100644 (file)
@@ -5,23 +5,24 @@
  *
  * \author André Pönitz
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-
 #include "insethfill.h"
-#include "support/LOstream.h"
+
+#include "support/std_ostream.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,14 +30,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;
 }
 
 
-void InsetHFill::write(Buffer const *, 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
+{
+       os << '\n';
+       return 0;
+}
+
+void InsetHFill::write(Buffer const &, ostream & os) const
 {
        os << "\n\\hfill \n";
 }