X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetLine.cpp;h=515efbba4f50931ec144fbeb11a7285435e811c6;hb=bfddee97e191a853f0576f4fab3f095c4e9ce0de;hp=a91a31ed5e88da95f9ade9f90cc444c32ec12eb5;hpb=838af80834ac38c231ff080acc3a6d60ad664ede;p=lyx.git diff --git a/src/insets/InsetLine.cpp b/src/insets/InsetLine.cpp index a91a31ed5e..515efbba4f 100644 --- a/src/insets/InsetLine.cpp +++ b/src/insets/InsetLine.cpp @@ -161,7 +161,7 @@ void InsetLine::draw(PainterInfo & pi, int x, int y) const } -int InsetLine::latex(odocstream & os, OutputParams const &) const +void InsetLine::latex(otexstream & os, OutputParams const &) const { bool have_offset = true; Length offset_len = Length(to_ascii(getParam("offset"))); @@ -180,8 +180,6 @@ int InsetLine::latex(odocstream & os, OutputParams const &) const if (have_offset) os << "[" << from_ascii(offset) << "]"; os << "{" << from_ascii(width) << "}{" << from_ascii(height) << '}'; - - return 0; } @@ -201,8 +199,7 @@ int InsetLine::docbook(odocstream & os, OutputParams const &) const docstring InsetLine::xhtml(XHTMLStream & xs, OutputParams const &) const { - xs << html::CompTag("hr"); - xs.cr(); + xs << html::CompTag("hr") << html::CR(); return docstring(); }