Add hasKey property to database and also make it accessible via the DatabaseWidget.

This commit is contained in:
Florian Geyer 2012-04-16 21:03:35 +02:00 committed by Felix Geyer
parent af8e21f125
commit eb4f82a7ed
4 changed files with 17 additions and 1 deletions

View file

@ -161,7 +161,7 @@ void DatabaseWidget::updateMasterKey(bool accepted)
m_db->setKey(m_changeMasterKeyWidget->newMasterKey());
}
else if (m_db->transformedMasterKey().isEmpty()) { // TODO other test?
else if (m_db->hasKey()) {
Q_EMIT closeRequest();
return;
}
@ -184,3 +184,8 @@ void DatabaseWidget::switchToMasterKeyChange()
m_changeMasterKeyWidget->clearForms();
setCurrentIndex(3);
}
bool DatabaseWidget::dbHasKey()
{
return m_db->hasKey();
}