]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
updates to minipage inset
[lyx.git] / src / insets / insetfoot.C
index c806568c2eefbeb1679ae891151818aff10f2ba7..1d942e899935ff000021ffcbbecb4bc0233b2c1f 100644 (file)
@@ -24,7 +24,6 @@
 #include "debug.h"
 
 using std::ostream;
-using std::endl;
 
 
 InsetFoot::InsetFoot()
@@ -35,7 +34,7 @@ InsetFoot::InsetFoot()
 }
 
 
-Inset * InsetFoot::Clone() const
+Inset * InsetFoot::Clone(Buffer const &) const
 {
     InsetFoot * result = new InsetFoot;
     result->inset->init(inset);
@@ -56,7 +55,7 @@ int InsetFoot::Latex(Buffer const * buf,
 {
     os << "\\footnote{%\n";
     
-    int i = inset->Latex(buf, os, fragile, fp);
+    int const i = inset->Latex(buf, os, fragile, fp);
     os << "}%\n";
     
     return i + 2;