]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettheorem.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insettheorem.h
index 84ad0e0653c515ccf683ca3a4335c59d3546d40c..24e9b8a2156d544b35213bc0328602ff37870bdd 100644 (file)
@@ -26,19 +26,17 @@ public:
        ///
        InsetTheorem();
        ///
-       void Write(Buffer const * buf, std::ostream & os) const;
+       void write(Buffer const * buf, std::ostream & os) const;
        ///
-       Inset * Clone(Buffer const &) const;
+       virtual Inset * clone(Buffer const &, bool same_id = false) const;
        ///
-       Inset::Code LyxCode() const { return Inset::THEOREM_CODE; }
+       Inset::Code lyxCode() const { return Inset::THEOREM_CODE; }
        ///
        bool display() const { return true; }
        ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
+       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
-       string const EditMessage() const;
-       ///
-       bool InsertInsetAllowed(Inset * inset) const;
+       string const editMessage() const;
 };
 
 #endif