]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetfoot.h
index 8c83d5a65c9468a899fddae4eb141884c3899510..275a69c39e181e3ffab1b70309da930af526e53c 100644 (file)
@@ -18,6 +18,7 @@
 #pragma interface
 #endif
 
+#include "LaTeXFeatures.h"
 #include "insetfootlike.h"
 
 /** The footnote inset
@@ -28,15 +29,15 @@ public:
        ///
        InsetFoot();
        ///
-       Inset * Clone() const;
+       InsetFoot(InsetFoot const &, bool same_id = false);
        ///
-       Inset::Code LyxCode() const { return Inset::FOOT_CODE; }
+       Inset * clone(Buffer const &, bool same_id = false) const;
        ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
+       Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
        ///
-       string const EditMessage() const;
+       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
-       bool InsertInsetAllowed(Inset * inset) const;
+       string const editMessage() const;
 };
 
 #endif