X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBibitem.h;h=41497e18497f48ac185baafe37c29a156a7153a7;hb=06e2669b354561ebafcd69c24d0319d47ba1d279;hp=5d4ae9fe1e22c5595283a7134b185f2cf6d87607;hpb=ecef54500d4d77baf4fa47eac2253679875ac08c;p=lyx.git diff --git a/src/insets/InsetBibitem.h b/src/insets/InsetBibitem.h index 5d4ae9fe1e..41497e1849 100644 --- a/src/insets/InsetBibitem.h +++ b/src/insets/InsetBibitem.h @@ -56,7 +56,7 @@ public: void read(Lexer & lex); /// int plaintext(odocstringstream &, OutputParams const &, - int max_length) const; + size_t max_length = INT_MAX) const; /// docstring xhtml(XHTMLStream &, OutputParams const &) const; /// @@ -86,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