qt, refactor: Emit WalletView::encryptionStatusChanged signal directly

This commit is contained in:
Hennadii Stepanov
2021-08-11 19:57:10 +03:00
parent 7d0d4c0490
commit 37dcf161d3
2 changed files with 2 additions and 10 deletions

View File

@@ -118,7 +118,7 @@ void WalletView::setWalletModel(WalletModel *_walletModel)
// Handle changes in encryption status
connect(_walletModel, &WalletModel::encryptionStatusChanged, this, &WalletView::encryptionStatusChanged);
updateEncryptionStatus();
Q_EMIT encryptionStatusChanged();
// update HD status
Q_EMIT hdEnabledStatusChanged();
@@ -211,11 +211,6 @@ void WalletView::showOutOfSyncWarning(bool fShow)
overviewPage->showOutOfSyncWarning(fShow);
}
void WalletView::updateEncryptionStatus()
{
Q_EMIT encryptionStatusChanged();
}
void WalletView::encryptWallet()
{
if(!walletModel)
@@ -224,7 +219,7 @@ void WalletView::encryptWallet()
dlg.setModel(walletModel);
dlg.exec();
updateEncryptionStatus();
Q_EMIT encryptionStatusChanged();
}
void WalletView::backupWallet()