]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
Make it compile when USE_BOOST_FORMAT is unset
[lyx.git] / src / insets / insetfoot.C
index 28ee366ce0b394fb147ab7af28296eb67ba51b5a..a0bf730374f75c2cc70ea4979ae57bb9d6c3bc75 100644 (file)
@@ -1,11 +1,12 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file insetfoot.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
  *
- *          Copyright 1998 The LyX Team.
- *
- * ======================================================
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
@@ -25,7 +26,6 @@
 // the following are needed just to get the layout of the enclosing
 // paragraph. This seems a bit too much to me (JMarc)
 #include "lyxlayout.h"
-#include "lyxtextclasslist.h"
 #include "buffer.h"
 #include "paragraph.h"
 
@@ -65,9 +65,8 @@ int InsetFoot::latex(Buffer const * buf,
                     ostream & os, bool fragile, bool fp) const
 {
        if (buf && parOwner()) {
-               LyXLayout const & layout =
-                       textclasslist[buf->params.textclass][parOwner()->layout()];
-               fragile |= layout.intitle;
+               LyXLayout_ptr const & layout = parOwner()->layout();
+               fragile |= layout->intitle;
        }
 
        os << "%\n\\footnote{";
@@ -79,10 +78,10 @@ int InsetFoot::latex(Buffer const * buf,
 }
 
 
-int InsetFoot::docbook(Buffer const * buf, ostream & os) const
+int InsetFoot::docbook(Buffer const * buf, ostream & os, bool mixcont) const
 {
        os << "<footnote>";
-       int const i = inset.docbook(buf, os);
+       int const i = inset.docbook(buf, os, mixcont);
        os << "</footnote>";
 
        return i;