X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetFloat.h;h=4a4c7d5bfbded980859a3d7174ebf884695af1dd;hb=bfddee97e191a853f0576f4fab3f095c4e9ce0de;hp=1ad57041ec956ae0c75bf1601f5780e4160d2333;hpb=1ef605f6254ef3f3b8cec5440a2e67e6f23a707b;p=lyx.git diff --git a/src/insets/InsetFloat.h b/src/insets/InsetFloat.h index 1ad57041ec..4a4c7d5bfb 100644 --- a/src/insets/InsetFloat.h +++ b/src/insets/InsetFloat.h @@ -69,7 +69,7 @@ public: InsetFloatParams const & params() const { return params_; } private: /// - docstring name() const; + docstring layoutName() const; /// docstring toolTip(BufferView const & bv, int x, int y) const; /// @@ -81,7 +81,7 @@ private: /// InsetCode lyxCode() const { return FLOAT_CODE; } /// - int latex(otexstream &, OutputParams const &) const; + void latex(otexstream &, OutputParams const &) const; /// int plaintext(odocstream &, OutputParams const &) const; /// @@ -90,10 +90,10 @@ private: docstring xhtml(XHTMLStream &, OutputParams const &) const; /// bool insetAllowed(InsetCode) const; - /** returns true if, when outputing LaTeX, font changes should + /** returns false if, when outputing LaTeX, font changes should be closed before generating this inset. This is needed for insets that may contain several paragraphs */ - bool noFontChange() const { return true; } + bool inheritFont() const { return false; } /// bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; // Update the counters of this inset and of its contents