]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfootlike.C
Translate labels for float:algorithm, float:figure and float:table.
[lyx.git] / src / insets / insetfootlike.C
index ea4da1ef0f447e3fdc97266c98bbe687f03b9732..2cac4e252215c2523136992f0eefd0294c30ccd8 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 2000-2001 The LyX Team.
  *
  * ======================================================
 #include "support/LOstream.h"
 
 
-InsetFootlike::InsetFootlike()
-       : InsetCollapsable()
+using std::ostream;
+
+
+InsetFootlike::InsetFootlike(BufferParams const & bp)
+       : InsetCollapsable(bp)
+{
+       LyXFont font(LyXFont::ALL_SANE);
+       font.decSize();
+       font.decSize();
+       font.setColor(LColor::collapsable);
+       setLabelFont(font);
+}
+
+
+InsetFootlike::InsetFootlike(InsetFootlike const & in, bool same_id)
+       : InsetCollapsable(in, same_id)
 {
        LyXFont font(LyXFont::ALL_SANE);
        font.decSize();
        font.decSize();
        font.setColor(LColor::collapsable);
        setLabelFont(font);
-#if 0
-       setAutoCollapse(false);
-#endif
 }
 
 
-void InsetFootlike::write(Buffer const * buf, std::ostream & os) const 
+void InsetFootlike::write(Buffer const * buf, ostream & os) const
 {
        os << getInsetName() << "\n";
        InsetCollapsable::write(buf, os);