X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetFootlike.h;h=f16f355a963b09d44adee31689717c95065892c3;hb=d4550b7a4d64e9ff772cf3a7635cb4ca532fb340;hp=7adfbdfdd6249ac9f4b72ec9e071074c857b19ff;hpb=237c132c1e6fc720b87f2fea6deb18a8395cbe0a;p=lyx.git diff --git a/src/insets/InsetFootlike.h b/src/insets/InsetFootlike.h index 7adfbdfdd6..f16f355a96 100644 --- a/src/insets/InsetFootlike.h +++ b/src/insets/InsetFootlike.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * * Full author contact details are available in file CREDITS. */ @@ -23,21 +23,22 @@ namespace lyx { class InsetFootlike : public InsetCollapsable { public: /// - InsetFootlike(BufferParams const &); + InsetFootlike(Buffer *); /// - InsetFootlike(InsetFootlike const &); + bool hasSettings() const { return false; } +private: /// void metrics(MetricsInfo &, Dimension &) const; /// void draw(PainterInfo & pi, int x, int y) const; /// - void write(Buffer const & buf, std::ostream & os) const; + void write(std::ostream & os) const; /// - bool insetAllowed(Inset::Code) const; - /** returns true if, when outputing LaTeX, font changes should + bool insetAllowed(InsetCode) const; + /** 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; } };