X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetNewline.cpp;h=b10954d4da659210f8192c273c7b47273bd2d87d;hb=cf6ff2cac79d09adafa63e3a1ec02dfb09f707b9;hp=87a35def3585a2e67aea2786aeab1b3814f0a582;hpb=1ef605f6254ef3f3b8cec5440a2e67e6f23a707b;p=lyx.git diff --git a/src/insets/InsetNewline.cpp b/src/insets/InsetNewline.cpp index 87a35def35..b10954d4da 100644 --- a/src/insets/InsetNewline.cpp +++ b/src/insets/InsetNewline.cpp @@ -21,6 +21,7 @@ #include "MetricsInfo.h" #include "OutputParams.h" #include "output_xhtml.h" +#include "texstream.h" #include "frontends/Application.h" #include "frontends/FontMetrics.h" @@ -40,7 +41,6 @@ InsetNewline::InsetNewline() : Inset(0) void InsetNewlineParams::write(ostream & os) const { - string command; switch (kind) { case InsetNewlineParams::NEWLINE: os << "newline"; @@ -56,7 +56,7 @@ void InsetNewlineParams::read(Lexer & lex) { string token; lex.setContext("InsetNewlineParams::read"); - lex >> token; + lex >> token; if (token == "newline") kind = InsetNewlineParams::NEWLINE; else if (token == "linebreak") @@ -142,7 +142,7 @@ ColorCode InsetNewline::ColorName() const } -int InsetNewline::latex(otexstream & os, OutputParams const & rp) const +void InsetNewline::latex(otexstream & os, OutputParams const & rp) const { switch (params_.kind) { case InsetNewlineParams::NEWLINE: @@ -158,11 +158,11 @@ int InsetNewline::latex(otexstream & os, OutputParams const & rp) const os << "\\\\\n"; break; } - return 0; } -int InsetNewline::plaintext(odocstream & os, OutputParams const &) const +int InsetNewline::plaintext(odocstringstream & os, + OutputParams const &, size_t) const { os << '\n'; return PLAINTEXT_NEWLINE; @@ -178,8 +178,7 @@ int InsetNewline::docbook(odocstream & os, OutputParams const &) const docstring InsetNewline::xhtml(XHTMLStream & xs, OutputParams const &) const { - xs << html::CompTag("br"); - xs.cr(); + xs << html::CR() << html::CompTag("br") << html::CR(); return docstring(); } @@ -246,7 +245,7 @@ void InsetNewline::draw(PainterInfo & pi, int x, int y) const yp[0] = int(y - 0.875 * asc * 0.75); yp[1] = int(y - 0.500 * asc * 0.75); yp[2] = int(y - 0.125 * asc * 0.75); - + if (pi.ltr_pos) { xp[0] = int(x + 2 * wid * 0.813); xp[1] = int(x + 2 * wid); @@ -261,9 +260,9 @@ void InsetNewline::draw(PainterInfo & pi, int x, int y) const } -docstring InsetNewline::contextMenuName() const +string InsetNewline::contextMenuName() const { - return from_ascii("context-newline"); + return "context-newline"; }