]> git.lyx.org Git - lyx.git/blobdiff - src/FloatList.C
Look for mathed xpms. Doesn't do anything yet due to lack of workable XPMs
[lyx.git] / src / FloatList.C
index 61d0aadff776e9877e5df150e046f9bf38d6ce55..932eda5e8650b5914ee96f184e1b56ba5ee42156 100644 (file)
@@ -30,12 +30,12 @@ FloatList::FloatList()
        // (these will later be read from a layout file)
 
        // table
-       Floating table("table", "htbp", "lot", "", "plain", N_("Table"),
+       Floating table("table", "tbp", "lot", "", "plain", N_("Table"),
                       N_("List of Tables"), true);
        newFloat(table);
 
        // figure
-       Floating figure("figure", "htbp", "lof",
+       Floating figure("figure", "tbp", "lof",
                        "", "plain", N_("Figure"), 
                        N_("List of Figures"), true);
        newFloat(figure);
@@ -104,6 +104,3 @@ FloatList::const_iterator FloatList::operator[](string const & t) const
        return list.find(t);
 }
 
-
-// The global floatlist
-FloatList floatList;