X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetFootlike.cpp;h=872c8b19ee99d3bf4484d6810bd52ce832cc7a87;hb=d8a6b5bfd0baa02a4ba03f8c9e9c618baf41b03f;hp=c0647b0824f99b6bafcbabc9ef4c1f0f9d137df1;hpb=a8cd9a4b8fd325b00c75f601c66c6d618ba276db;p=lyx.git diff --git a/src/insets/InsetFootlike.cpp b/src/insets/InsetFootlike.cpp index c0647b0824..872c8b19ee 100644 --- a/src/insets/InsetFootlike.cpp +++ b/src/insets/InsetFootlike.cpp @@ -19,6 +19,8 @@ #include +using namespace std; + namespace lyx { @@ -50,10 +52,10 @@ void InsetFootlike::draw(PainterInfo & pi, int x, int y) const } -void InsetFootlike::write(Buffer const & buf, std::ostream & os) const +void InsetFootlike::write(ostream & os) const { os << to_utf8(name()) << "\n"; - InsetCollapsable::write(buf, os); + InsetCollapsable::write(os); }