]> 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 73ef63dd54e2508b0f51661c5d5bf4de27a1e2aa..8e3eedb5c78767d2de6b1d531802a7aeb6e19028 100644 (file)
@@ -5,38 +5,52 @@
  *
  * \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, LatexRunParams const &,
-                     bool /*fragile*/, bool /*fs*/) const
+int InsetHFill::latex(Buffer const &, ostream & os,
+                     LatexRunParams const &) const
 {
        os << getCommand();
        return 0;
 }
 
 
-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";
 }