X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FTocBackend.cpp;h=1964147977395f25256dee7d668aa3c30eb1ee5a;hb=a49c4e3454e428eeb0f2678eb9db3d086b2b789c;hp=7c0084420e1fcf71e0a30d36254cd3778a6719f9;hpb=2e7d1199dfa7ec7b7d963c374a014f2a2227ae7c;p=lyx.git diff --git a/src/TocBackend.cpp b/src/TocBackend.cpp index 7c0084420e..1964147977 100644 --- a/src/TocBackend.cpp +++ b/src/TocBackend.cpp @@ -108,7 +108,7 @@ void TocBackend::updateItem(ParConstIterator const & par_it) } BufferParams const & bufparams = buffer_->params(); - const int min_toclevel = bufparams.getTextClass().min_toclevel(); + const int min_toclevel = bufparams.documentClass().min_toclevel(); TocIterator toc_item = item("tableofcontents", par_it); @@ -127,16 +127,15 @@ void TocBackend::updateItem(ParConstIterator const & par_it) *static_cast(inset).paragraphs().begin(); if (!toc_item->par_it_->labelString().empty()) tocstring = toc_item->par_it_->labelString() + ' '; - tocstring += par.asString(*buffer_, false); + tocstring += par.asString(false); break; } } - int const toclevel = toc_item->par_it_->layout()->toclevel; - if (toclevel != Layout::NOT_IN_TOC - && toclevel >= min_toclevel + int const toclevel = toc_item->par_it_->layout().toclevel; + if (toclevel != Layout::NOT_IN_TOC && toclevel >= min_toclevel && tocstring.empty()) - tocstring = toc_item->par_it_->asString(*buffer_, true); + tocstring = toc_item->par_it_->asString(true); const_cast(*toc_item).str_ = tocstring; } @@ -147,7 +146,7 @@ void TocBackend::update() tocs_.clear(); BufferParams const & bufparams = buffer_->params(); - const int min_toclevel = bufparams.getTextClass().min_toclevel(); + const int min_toclevel = bufparams.documentClass().min_toclevel(); Toc & toc = tocs_["tableofcontents"]; ParConstIterator pit = buffer_->par_iterator_begin(); @@ -163,7 +162,8 @@ void TocBackend::update() InsetList::const_iterator end = pit->insetList().end(); for (; it != end; ++it) { Inset & inset = *it->inset; - inset.addToToc(*buffer_, pit); + //lyxerr << (void*)&inset << " code: " << inset.lyxCode() << std::endl; + inset.addToToc(pit); switch (inset.lyxCode()) { case OPTARG_CODE: { if (!tocstring.empty()) @@ -172,7 +172,7 @@ void TocBackend::update() *static_cast(inset).paragraphs().begin(); if (!pit->labelString().empty()) tocstring = pit->labelString() + ' '; - tocstring += par.asString(*buffer_, false); + tocstring += par.asString(false); break; } default: @@ -181,12 +181,12 @@ void TocBackend::update() } /// now the toc entry for the paragraph - int const toclevel = pit->layout()->toclevel; + int const toclevel = pit->layout().toclevel; if (toclevel != Layout::NOT_IN_TOC && toclevel >= min_toclevel) { // insert this into the table of contents if (tocstring.empty()) - tocstring = pit->asString(*buffer_, true); + tocstring = pit->asString(true); toc.push_back(TocItem(pit, toclevel - min_toclevel, tocstring)); }