]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlist.C
use more specific smart_ptr headers
[lyx.git] / src / insets / insetlist.C
index 8c073dc86ab8060e375ab9752757ea167bc27031..646cb86ea03868fa6621fc46800c7b368ebec213 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 1998 The LyX Team.
  *
  * ====================================================== */
@@ -45,7 +45,9 @@ InsetList::InsetList()
        font.decSize();
        font.setColor(LColor::collapsable);
        setLabelFont(font);
+#if 0
        setAutoCollapse(false);
+#endif
        setInsetName("List");
 }
 
@@ -67,9 +69,9 @@ int InsetList::latex(Buffer const * buf,
                     ostream & os, bool fragile, bool fp) const
 {
        os << "\\footnote{%\n";
-       
+
        int i = inset.latex(buf, os, fragile, fp);
        os << "}%\n";
-       
+
        return i + 2;
 }