]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLine.cpp
New DocBook support
[lyx.git] / src / insets / InsetLine.cpp
index c1c890c2ed8b7ffe81bd023f18ad997b0d8e313f..2479be13a03ced33b37e110527aba238803a8ac9 100644 (file)
@@ -37,6 +37,7 @@
 #include "support/lstrings.h"
 
 #include <cstdlib>
+#include <output_docbook.h>
 
 using namespace std;
 
@@ -143,8 +144,8 @@ void InsetLine::draw(PainterInfo & pi, int x, int y) const
        Color Line_color = pi.base.font.realColor();
 
        // the offset is a vertical one
-       // the horizontal dimension must be corrected with the heigth because
-       // of left and right border of the painted line for big heigth.
+       // the horizontal dimension must be corrected with the height because
+       // of left and right border of the painted line for big height.
        pi.pain.line(x + height_/2 + 1,
                     y - offset_ - height_/2,
                     x + dim.wid - height_/2 - 2,
@@ -183,16 +184,15 @@ int InsetLine::plaintext(odocstringstream & os,
 }
 
 
-int InsetLine::docbook(odocstream & os, OutputParams const &) const
+void InsetLine::docbook(XMLStream & xs, OutputParams const &) const
 {
-       os << '\n';
-       return 0;
+       xs << xml::CR();
 }
 
 
-docstring InsetLine::xhtml(XHTMLStream & xs, OutputParams const &) const
+docstring InsetLine::xhtml(XMLStream & xs, OutputParams const &) const
 {
-       xs << html::CompTag("hr") << html::CR();
+       xs << xml::CompTag("hr") << xml::CR();
        return docstring();
 }