]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetfoot.C
index 94a50917e9f7abcf72833691b76146e6a9e562d6..35e441c2793627084387fff3502b78431c52d5d7 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 1998 The LyX Team.
  *
  * ======================================================
 #include "debug.h"
 
 
-InsetFoot::InsetFoot()
-       : InsetFootlike()
+using std::ostream;
+
+
+InsetFoot::InsetFoot(BufferParams const & bp)
+       : InsetFootlike(bp)
+{
+       setLabel(_("foot"));
+       setInsetName("Foot");
+}
+
+
+InsetFoot::InsetFoot(InsetFoot const & in, bool same_id)
+       : InsetFootlike(in, same_id)
 {
        setLabel(_("foot"));
        setInsetName("Foot");
 }
 
 
+Inset * InsetFoot::clone(Buffer const &, bool same_id) const
+{
+       return new InsetFoot(*const_cast<InsetFoot *>(this), same_id);
+}
+
+
 string const InsetFoot::editMessage() const
 {
        return _("Opened Footnote Inset");
@@ -39,12 +56,12 @@ 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{";
-       
+
        int const i = inset.latex(buf, os, fragile, fp);
        os << "%\n}";
-       
+
        return i + 2;
 }