mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
performance fix.
* InsetFloat::addToToc(): avoid a string copy, a map lookup and a TocItem construction. Don't complete the loop if item found. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16600 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
42b83ba362
commit
c2dee509d9
@ -384,12 +384,12 @@ void InsetFloat::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));
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user