Clear database open dialog before and after merging a database (#958)

This commit is contained in:
Jonathan White 2017-09-23 11:43:29 -04:00 committed by louib
parent daef0a358c
commit df3051038e
5 changed files with 15 additions and 12 deletions

View file

@ -26,14 +26,3 @@ UnlockDatabaseWidget::UnlockDatabaseWidget(QWidget* parent)
{
m_ui->labelHeadline->setText(tr("Unlock database"));
}
void UnlockDatabaseWidget::clearForms()
{
m_ui->editPassword->clear();
m_ui->comboKeyFile->clear();
m_ui->checkPassword->setChecked(false);
m_ui->checkKeyFile->setChecked(false);
m_ui->checkChallengeResponse->setChecked(false);
m_ui->buttonTogglePassword->setChecked(false);
m_db = nullptr;
}