X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBibitem.h;h=41497e18497f48ac185baafe37c29a156a7153a7;hb=239b9919ffe28338d789e6dc9122228f77ab77a7;hp=49388243acbca35ac7860ea2f9da6ffcc3c7b848;hpb=dfdcc56cbaf77b67048cfd7e2ad877b7687f4888;p=lyx.git diff --git a/src/insets/InsetBibitem.h b/src/insets/InsetBibitem.h index 49388243ac..41497e1849 100644 --- a/src/insets/InsetBibitem.h +++ b/src/insets/InsetBibitem.h @@ -55,7 +55,8 @@ public: /// void read(Lexer & lex); /// - int plaintext(odocstream &, OutputParams const &) const; + int plaintext(odocstringstream &, OutputParams const &, + size_t max_length = INT_MAX) const; /// docstring xhtml(XHTMLStream &, OutputParams const &) const; /// @@ -85,6 +86,8 @@ private: void doDispatch(Cursor & cur, FuncRequest & cmd); /// Inset * clone() const { return new InsetBibitem(*this); } + /// Is the content of this inset part of the immediate (visible) text sequence? + bool isPartOfTextSequence() const { return false; } ///@} /// \name Private functions inherited from InsetCommand class