X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetTheorem.h;h=74234954673ea0a4114f77d4b31c7b7dee675fc5;hb=d8a6b5bfd0baa02a4ba03f8c9e9c618baf41b03f;hp=c5b1b977120cbf482cf0ad4b4f56c37d2fb23051;hpb=237c132c1e6fc720b87f2fea6deb18a8395cbe0a;p=lyx.git diff --git a/src/insets/InsetTheorem.h b/src/insets/InsetTheorem.h index c5b1b97712..7423495467 100644 --- a/src/insets/InsetTheorem.h +++ b/src/insets/InsetTheorem.h @@ -9,9 +9,10 @@ * Full author contact details are available in file CREDITS. */ -#ifndef Inset.heorem_H -#define Inset.heorem_H +#if 0 +#ifndef INSETTHEOREM_H +#define INSETTHEOREM_H #include "InsetCollapsable.h" @@ -26,20 +27,21 @@ public: /// Inset.heorem(); /// - void write(Buffer const & buf, std::ostream & os) const; + void write(std::ostream & os) const; /// - Inset::Code lyxCode() const { return Inset::THEOREM_CODE; } + InsetCode lyxCode() const { return THEOREM_CODE; } /// void metrics(MetricsInfo &, Dimension &) const; /// void draw(PainterInfo & pi, int x, int y) const; /// - int latex(Buffer const &, odocstream &, - OutputParams const &) const; + bool isMacroScope() const { return true; } /// - virtual docstring const editMessage() const; + int latex(odocstream &, OutputParams const &) const; + /// + docstring editMessage() const; private: - virtual Inset * clone() const; + Inset * clone() const; /// mutable unsigned int center_indent_; @@ -49,3 +51,5 @@ private: } // namespace lyx #endif + +#endif