]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFootlike.cpp
Pure HTML output for math macros.
[lyx.git] / src / insets / InsetFootlike.cpp
index 9d0b69040394c299aa2c37399d9284f2a40138ed..4467081d7e24a239ff2f000fc0a6b7a1e549160a 100644 (file)
@@ -3,7 +3,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -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 * 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);
 }