]> 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 a2297b6cd9133aee05ea456eb6f32c6a1dc16b6e..35e441c2793627084387fff3502b78431c52d5d7 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 1998 The LyX Team.
  *
  * ======================================================
@@ -27,8 +27,8 @@
 using std::ostream;
 
 
-InsetFoot::InsetFoot()
-       : InsetFootlike()
+InsetFoot::InsetFoot(BufferParams const & bp)
+       : InsetFootlike(bp)
 {
        setLabel(_("foot"));
        setInsetName("Foot");
@@ -59,9 +59,9 @@ int InsetFoot::latex(Buffer const * buf,
                     ostream & os, bool fragile, bool fp) const
 {
        os << "%\n\\footnote{";
-       
+
        int const i = inset.latex(buf, os, fragile, fp);
        os << "%\n}";
-       
+
        return i + 2;
 }