same performance fix as rev. 16600.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16601 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-01-08 11:42:20 +00:00
parent c2dee509d9
commit 827f20ce1f

View File

@ -232,12 +232,11 @@ void InsetWrap::addToToc(TocList & toclist, Buffer const & buf) const
// Find a caption layout in one of the (child inset's) pars
for (; pit != end; ++pit) {
if (pit->layout()->labeltype == LABEL_SENSITIVE) {
string const type = params_.type;
Toc & toc = toclist[params_.type];
docstring const str =
convert<docstring>(toclist[type].size() + 1)
convert<docstring>(toc.size() + 1)
+ ". " + pit->asString(buf, false);
TocItem const item(pit, 0, str);
toclist[type].push_back(item);
toc.push_back(TocItem(pit, 0, str));
}
}
}