X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FTocBackend.cpp;h=859e6e86e8e306ec35600e448754ac503f581e17;hb=bfe98181169d9e697e515da974d9b6a15a06c940;hp=d9ed95767a0de1ae426687473bd7e947a243de96;hpb=a7018252b75316b7855f04c51be2342dc269f96c;p=lyx.git diff --git a/src/TocBackend.cpp b/src/TocBackend.cpp index d9ed95767a..859e6e86e8 100644 --- a/src/TocBackend.cpp +++ b/src/TocBackend.cpp @@ -43,8 +43,8 @@ namespace lyx { /////////////////////////////////////////////////////////////////////////// TocItem::TocItem(DocIterator const & dit, int d, docstring const & s, - bool output_active, FuncRequest const & action) - : dit_(dit), depth_(d), str_(s), output_(output_active), + bool output_active, bool missing, FuncRequest const & action) + : dit_(dit), depth_(d), str_(s), output_(output_active), missing_(missing), action_(action) { } @@ -65,6 +65,9 @@ docstring const TocItem::asString() const prefix += cross; prefix += thin; } + if (missing_) { + prefix += _("MISSING: "); + } return prefix + str_; } @@ -143,7 +146,7 @@ shared_ptr TocBackend::toc(string const & type) TocBuilder & TocBackend::builder(string const & type) { - auto p = make_unique(toc(type)); + auto p = lyx::make_unique(toc(type)); return * builders_.insert(make_pair(type, move(p))).first->second; } @@ -155,6 +158,9 @@ TocBuilder & TocBackend::builder(string const & type) // all TOCs. bool TocBackend::updateItem(DocIterator const & dit_in) const { + if (dit_in.buffer() && dit_in.buffer()->isInternal()) + return false; + // we need a text DocIterator dit = dit_in.getInnerText();