]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetfoot.C
index b3b39f9171b29c2f640daab406656f5e3db5aefa..a2297b6cd9133aee05ea456eb6f32c6a1dc16b6e 100644 (file)
@@ -24,6 +24,9 @@
 #include "debug.h"
 
 
+using std::ostream;
+
+
 InsetFoot::InsetFoot()
        : InsetFootlike()
 {
@@ -32,13 +35,17 @@ InsetFoot::InsetFoot()
 }
 
 
-Inset * InsetFoot::clone(Buffer const &) const
+InsetFoot::InsetFoot(InsetFoot const & in, bool same_id)
+       : InsetFootlike(in, same_id)
 {
-       InsetFoot * result = new InsetFoot;
-       result->inset.init(&inset);
+       setLabel(_("foot"));
+       setInsetName("Foot");
+}
+
 
-       result->collapsed = collapsed;
-       return result;
+Inset * InsetFoot::clone(Buffer const &, bool same_id) const
+{
+       return new InsetFoot(*const_cast<InsetFoot *>(this), same_id);
 }
 
 
@@ -49,7 +56,7 @@ string const InsetFoot::editMessage() const
 
 
 int InsetFoot::latex(Buffer const * buf,
-                    std::ostream & os, bool fragile, bool fp) const
+                    ostream & os, bool fragile, bool fp) const
 {
        os << "%\n\\footnote{";
        
@@ -58,13 +65,3 @@ int InsetFoot::latex(Buffer const * buf,
        
        return i + 2;
 }
-
-
-bool InsetFoot::insertInsetAllowed(Inset * in) const
-{
-       if ((in->lyxCode() == Inset::FOOT_CODE) ||
-           (in->lyxCode() == Inset::MARGIN_CODE)) {
-               return false;
-       }
-       return true;
-}