]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFootlike.cpp
Cleanup bv-dependent variables in InsetCollapsable
[lyx.git] / src / insets / InsetFootlike.cpp
index ce82e6461a2731a6236862621227936b326c00bd..5685e865bfa8407ed6b6eec42966e3b9b0924127 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.
  */
 #include "Buffer.h"
 #include "BufferView.h"
 #include "BufferParams.h"
+#include "Font.h"
 #include "MetricsInfo.h"
 
+#include "support/lstrings.h"
+
 #include <iostream>
 
 using namespace std;
 
 namespace lyx {
 
+using support::token;
 
-InsetFootlike::InsetFootlike(Buffer const & buf)
+InsetFootlike::InsetFootlike(Buffer * buf)
        : InsetCollapsable(buf)
 {}
 
 
-InsetFootlike::InsetFootlike(InsetFootlike const & in)
-       : InsetCollapsable(in)
-{}
-
-
 void InsetFootlike::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        FontInfo tmpfont = mi.base.font;
@@ -54,7 +53,8 @@ void InsetFootlike::draw(PainterInfo & pi, int x, int y) const
 
 void InsetFootlike::write(ostream & os) const
 {
-       os << to_utf8(name()) << "\n";
+       // The layoutName may contain a "InTitle" qualifier
+       os << to_utf8(token(layoutName(), char_type(':'), 0)) << "\n";
        InsetCollapsable::write(os);
 }