qt, wallet, refactor: Move connection to QObject::deleteLater to ctor

This commit is contained in:
Hennadii Stepanov
2021-05-22 22:22:21 +03:00
parent f9b633eeab
commit 4a024fc310
2 changed files with 1 additions and 3 deletions

View File

@@ -191,6 +191,7 @@ WalletControllerActivity::WalletControllerActivity(WalletController* wallet_cont
, m_wallet_controller(wallet_controller)
, m_parent_widget(parent_widget)
{
connect(this, &WalletControllerActivity::finished, this, &QObject::deleteLater);
}
void WalletControllerActivity::showProgressDialog(const QString& label_text)