X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetSpecialChar.cpp;h=bc62e4e7651575325a969a37c71cd57326c75853;hb=2c357c1d23b7b83839a9beb8225d4f1ae4f793b4;hp=b6f6b2ac83b438e9d6b0e951ceb8a64c9eaf0728;hpb=9383f4c3c6f9cfab2d658701ba66e2b54cd68bea;p=lyx.git diff --git a/src/insets/InsetSpecialChar.cpp b/src/insets/InsetSpecialChar.cpp index b6f6b2ac83..bc62e4e765 100644 --- a/src/insets/InsetSpecialChar.cpp +++ b/src/insets/InsetSpecialChar.cpp @@ -14,7 +14,6 @@ #include "InsetSpecialChar.h" -#include "support/debug.h" #include "Dimension.h" #include "LaTeXFeatures.h" #include "Lexer.h" @@ -23,6 +22,7 @@ #include "frontends/FontMetrics.h" #include "frontends/Painter.h" +#include "support/debug.h" #include "support/docstream.h" using namespace std; @@ -287,10 +287,9 @@ int InsetSpecialChar::docbook(Buffer const &, odocstream & os, } -int InsetSpecialChar::textString(Buffer const & buf, odocstream & os, - OutputParams const & op) const +void InsetSpecialChar::textString(Buffer const & buf, odocstream & os) const { - return plaintext(buf, os, op); + plaintext(buf, os, OutputParams(0)); }