]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFootlike.cpp
Move isMultiCell() to Cursor, and use it.
[lyx.git] / src / insets / InsetFootlike.cpp
index 9d0b69040394c299aa2c37399d9284f2a40138ed..08cc220374d1f51ab3904aff34a78e4b9d41d0ee 100644 (file)
@@ -24,13 +24,8 @@ using namespace std;
 namespace lyx {
 
 
-InsetFootlike::InsetFootlike(BufferParams const & bp)
-       : InsetCollapsable(bp)
-{}
-
-
-InsetFootlike::InsetFootlike(InsetFootlike const & in)
-       : InsetCollapsable(in)
+InsetFootlike::InsetFootlike(Buffer const & buf)
+       : InsetCollapsable(buf)
 {}
 
 
@@ -52,10 +47,10 @@ void InsetFootlike::draw(PainterInfo & pi, int x, int y) const
 }
 
 
-void InsetFootlike::write(Buffer const & buf, ostream & os) const
+void InsetFootlike::write(ostream & os) const
 {
        os << to_utf8(name()) << "\n";
-       InsetCollapsable::write(buf, os);
+       InsetCollapsable::write(os);
 }