Correct toc to floatlist

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35839 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2010-10-25 19:53:40 +00:00
parent b1ad9a7c03
commit f270358904

View File

@ -38,12 +38,12 @@ namespace lyx {
InsetFloatList::InsetFloatList(Buffer * buf) InsetFloatList::InsetFloatList(Buffer * buf)
: InsetCommand(buf, InsetCommandParams(FLOAT_LIST_CODE), "toc") : InsetCommand(buf, InsetCommandParams(FLOAT_LIST_CODE), "floatlist")
{} {}
InsetFloatList::InsetFloatList(Buffer * buf, string const & type) InsetFloatList::InsetFloatList(Buffer * buf, string const & type)
: InsetCommand(buf, InsetCommandParams(FLOAT_LIST_CODE), "toc") : InsetCommand(buf, InsetCommandParams(FLOAT_LIST_CODE), "floatlist")
{ {
setParam("type", from_ascii(type)); setParam("type", from_ascii(type));
} }