]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFootlike.cpp
Fix bug #12795
[lyx.git] / src / insets / InsetFootlike.cpp
index 5685e865bfa8407ed6b6eec42966e3b9b0924127..36fc9945b8bbf3be8bded8cc4f8156717d7e8bed 100644 (file)
@@ -29,33 +29,15 @@ namespace lyx {
 using support::token;
 
 InsetFootlike::InsetFootlike(Buffer * buf)
-       : InsetCollapsable(buf)
+       : InsetCollapsible(buf)
 {}
 
 
-void InsetFootlike::metrics(MetricsInfo & mi, Dimension & dim) const
-{
-       FontInfo tmpfont = mi.base.font;
-       mi.base.font = mi.base.bv->buffer().params().getFont().fontInfo();
-       InsetCollapsable::metrics(mi, dim);
-       mi.base.font = tmpfont;
-}
-
-
-void InsetFootlike::draw(PainterInfo & pi, int x, int y) const
-{
-       FontInfo tmpfont = pi.base.font;
-       pi.base.font = pi.base.bv->buffer().params().getFont().fontInfo();
-       InsetCollapsable::draw(pi, x, y);
-       pi.base.font = tmpfont;
-}
-
-
 void InsetFootlike::write(ostream & os) const
 {
        // The layoutName may contain a "InTitle" qualifier
        os << to_utf8(token(layoutName(), char_type(':'), 0)) << "\n";
-       InsetCollapsable::write(os);
+       InsetCollapsible::write(os);
 }
 
 
@@ -63,7 +45,7 @@ bool InsetFootlike::insetAllowed(InsetCode code) const
 {
        if (code == FOOT_CODE || code == MARGIN_CODE || code == FLOAT_CODE)
                return false;
-       return InsetCollapsable::insetAllowed(code);
+       return InsetCollapsible::insetAllowed(code);
 }