mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Fix syntax error.
This commit is contained in:
parent
4334824e85
commit
0ca32ea110
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ void ChangeMasterKeyWidget::generateKey()
|
|||
if (m_ui->keyFileGroup->isChecked()) {
|
||||
FileKey fileKey;
|
||||
QString errorMsg;
|
||||
if (!fileKey.load(m_ui->keyFileCombo->currentText()), &errorMsg) {
|
||||
if (!fileKey.load(m_ui->keyFileCombo->currentText(), &errorMsg)) {
|
||||
// TODO error handling
|
||||
}
|
||||
m_key.addKey(fileKey);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue