Some minor amendments to [3ae6bff538/lyxgit]

This commit is contained in:
Juergen Spitzmueller 2018-12-29 10:26:28 +01:00
parent 3ae6bff538
commit a550a613e8
2 changed files with 6 additions and 9 deletions

View File

@ -318,7 +318,7 @@ public:
/// was missing).
bool preview_error_;
/// Cache the insets, their associated refs (with positions),
/// Cache the label insets, their associated refs (with positions),
/// and whether the insets are active.
mutable RefCache ref_cache_;
@ -3900,7 +3900,7 @@ Buffer::References & Buffer::getReferenceCache(docstring const & label)
// In what follows, we look whether we find an active label
// with the given string in the cache. If so, return its
// references cache. If we only find an inactive one, return
// that (the last we find, coincidentally). If we find noting,
// that (the last we find, coincidentally). If we find nothing,
// return an empty references cache.
static LabelInfo linfo;
linfo.inset = nullptr;
@ -3965,14 +3965,10 @@ InsetLabel const * Buffer::insetLabel(docstring const & label,
bool Buffer::activeLabel(docstring const & label) const
{
if (!insetLabel(label))
if (!insetLabel(label, true))
return false;
for (auto & rc : masterBuffer()->d->ref_cache_) {
if (rc.label == label && rc.active)
return true;
}
return false;
return true;
}

View File

@ -713,7 +713,8 @@ public:
void setInsetLabel(docstring const & label, InsetLabel const * il,
bool const active);
/// \return the InsetLabel associated with this \p label string
/// If \p active is true we only return active labels.
/// If \p active is true we only return active labels
/// (see @ref activeLabel)
InsetLabel const * insetLabel(docstring const & label,
bool const active = false) const;
/// \return true if this \param label is an active label.