]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.C
ws changes only
[lyx.git] / src / insets / insetlist.C
index 82a3ecaeb4939f877d1e4f554f9d1102e99d93f7..bcabf905ddfcbe8402a402929c5a8a60c84e96ff 100644 (file)
@@ -5,22 +5,24 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 #include <config.h>
 
-
 #include "insetlist.h"
+#include "insets/insettext.h"
+
+#include "BufferView.h"
+#include "debug.h"
 #include "gettext.h"
 #include "lyxfont.h"
-#include "BufferView.h"
 #include "lyxtext.h"
-#include "insets/insettext.h"
-#include "support/LOstream.h"
-#include "debug.h"
 
-using std::ostream;
+#include "support/std_ostream.h"
+
 using std::endl;
+using std::ostream;
+
 
 // This class is _far_ from finished. I hope that we can have a inset to
 // handle the different lists that we have. It should also be possible
@@ -62,12 +64,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;