highlight reference field in Database view

This commit is contained in:
thez3ro 2017-03-05 23:47:08 +01:00
parent e91a41401c
commit a03e354504
No known key found for this signature in database
GPG key ID: F628F9E41DD7C073
5 changed files with 52 additions and 3 deletions

View file

@ -254,6 +254,17 @@ bool Entry::isExpired() const
return m_data.timeInfo.expires() && m_data.timeInfo.expiryTime() < QDateTime::currentDateTimeUtc();
}
bool Entry::hasReferences() const
{
const QList<QString> keyList = EntryAttributes::DefaultAttributes;
for (const QString& key : keyList) {
if (m_attributes->isReference(key)) {
return true;
}
}
return false;
}
EntryAttributes* Entry::attributes()
{
return m_attributes;