]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
updates to minipage inset
[lyx.git] / src / insets / insetfoot.C
index 03f3fae71440ce1b2c7a1dafdc52b847baaa4d43..1d942e899935ff000021ffcbbecb4bc0233b2c1f 100644 (file)
@@ -34,7 +34,7 @@ InsetFoot::InsetFoot()
 }
 
 
-Inset * InsetFoot::Clone() const
+Inset * InsetFoot::Clone(Buffer const &) const
 {
     InsetFoot * result = new InsetFoot;
     result->inset->init(inset);
@@ -55,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;