]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.C
Clean up InsetGraphics::Cache and rename as GraphicsInset.
[lyx.git] / src / insets / insetlist.C
index 646cb86ea03868fa6621fc46800c7b368ebec213..15c98b4e245881425544e35ef7cfb193f05fea28 100644 (file)
@@ -1,17 +1,14 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file insetlist.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *          Copyright 1998 The LyX Team.
- *
- * ====================================================== */
-
+ * Full author contact details are available in file CREDITS
+ */
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "insetlist.h"
 #include "gettext.h"
@@ -65,12 +62,12 @@ string const InsetList::editMessage() const
 }
 
 
-int InsetList::latex(Buffer const * buf,
-                    ostream & os, bool fragile, bool fp) const
+int InsetList::latex(Buffer const * buf, ostream & os,
+                    LatexRunParams const & runparams) const
 {
        os << "\\footnote{%\n";
 
-       int i = inset.latex(buf, os, fragile, fp);
+       int i = inset.latex(buf, os, runparams);
        os << "}%\n";
 
        return i + 2;