X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetwrap.C;h=570802c50d70b6371f71452d6cf531b577cd2b32;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=cbcdaf4fa2045d27084e415c00cc3c8f376ad534;hpb=2734cc154853c61a7ea54bfeea3adc908f68bdc5;p=lyx.git diff --git a/src/insets/insetwrap.C b/src/insets/insetwrap.C index cbcdaf4fa2..570802c50d 100644 --- a/src/insets/insetwrap.C +++ b/src/insets/insetwrap.C @@ -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(toclist[type].size() + 1) + convert(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)); } } }