]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
updates to minipage inset
[lyx.git] / src / insets / insetfoot.C
index 48572075290c4ed113ddf9f6103d317136739c35..1d942e899935ff000021ffcbbecb4bc0233b2c1f 100644 (file)
 #include "debug.h"
 
 using std::ostream;
-using std::endl;
 
 
-InsetFoot::InsetFoot() : InsetFootlike()
+InsetFoot::InsetFoot()
+       : InsetFootlike()
 {
     setLabel(_("foot"));
     setInsetName("Foot");
 }
 
 
-Inset * InsetFoot::Clone() const
+Inset * InsetFoot::Clone(Buffer const &) const
 {
     InsetFoot * result = new InsetFoot;
     result->inset->init(inset);
@@ -44,7 +44,7 @@ Inset * InsetFoot::Clone() const
 }
 
 
-char const * InsetFoot::EditMessage() const
+string const InsetFoot::EditMessage() const
 {
     return _("Opened Footnote 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;
@@ -70,14 +70,3 @@ bool InsetFoot::InsertInsetAllowed(Inset * in) const
     }
     return true;
 }
-
-
-#if 0
-LyXFont InsetFoot::GetDrawFont(BufferView * bv,
-                              LyXParagraph * p, int pos) const
-{
-    LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
-    fn.decSize().decSize();
-    return fn;
-}
-#endif