mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 03:36:39 +00:00
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:
parent
c2dee509d9
commit
827f20ce1f
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user