refs #450 Corrected emission of log messages from value cache validation.

This commit is contained in:
Mathew Sutcliffe
2015-09-05 16:41:16 +01:00
parent 91e54be78b
commit ca9256be82
3 changed files with 17 additions and 5 deletions

View File

@@ -105,6 +105,9 @@ namespace BlackMisc
return std::all_of(classCategories.begin(), classCategories.end(), [this](const CLogCategory & cat) { return m_categories.contains(cat); });
}
//! Mark the message as potentially already handled
void markAsRedundant() { this->m_redundant = true; }
//! Mark the message as having been handled by the given object
void markAsHandledBy(const QObject *object) const;