]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFootlike.cpp
Remove TextClassPtr without losing the type safety it provided.
[lyx.git] / src / insets / InsetFootlike.cpp
index c0647b0824f99b6bafcbabc9ef4c1f0f9d137df1..872c8b19ee99d3bf4484d6810bd52ce832cc7a87 100644 (file)
@@ -19,6 +19,8 @@
 
 #include <iostream>
 
+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);
 }