X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfoot.C;h=a2297b6cd9133aee05ea456eb6f32c6a1dc16b6e;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=358c3ef9e1e9a55157838e6986b5087ec63bc267;hpb=85a5ea7bfc80e179a61a99f2955455e84d3384cc;p=lyx.git diff --git a/src/insets/insetfoot.C b/src/insets/insetfoot.C index 358c3ef9e1..a2297b6cd9 100644 --- a/src/insets/insetfoot.C +++ b/src/insets/insetfoot.C @@ -24,6 +24,9 @@ #include "debug.h" +using std::ostream; + + InsetFoot::InsetFoot() : InsetFootlike() { @@ -32,13 +35,17 @@ InsetFoot::InsetFoot() } -Inset * InsetFoot::clone(Buffer const &) const +InsetFoot::InsetFoot(InsetFoot const & in, bool same_id) + : InsetFootlike(in, same_id) { - InsetFoot * result = new InsetFoot; - result->inset.init(&inset); + setLabel(_("foot")); + setInsetName("Foot"); +} + - result->collapsed = collapsed; - return result; +Inset * InsetFoot::clone(Buffer const &, bool same_id) const +{ + return new InsetFoot(*const_cast(this), same_id); } @@ -49,22 +56,12 @@ string const InsetFoot::editMessage() const int InsetFoot::latex(Buffer const * buf, - std::ostream & os, bool fragile, bool fp) const + ostream & os, bool fragile, bool fp) const { - os << "\\footnote{%\n"; + os << "%\n\\footnote{"; int const i = inset.latex(buf, os, fragile, fp); - os << "}\n"; + os << "%\n}"; return i + 2; } - - -bool InsetFoot::insertInsetAllowed(Inset * in) const -{ - if ((in->lyxCode() == Inset::FOOT_CODE) || - (in->lyxCode() == Inset::MARGIN_CODE)) { - return false; - } - return true; -}