diff options
author | João Barbosa <joao.paulo.barbosa@gmail.com> | 2019-01-18 00:23:19 +0000 |
---|---|---|
committer | João Barbosa <joao.paulo.barbosa@gmail.com> | 2019-01-18 00:27:34 +0000 |
commit | cefb399e21cc82e18c2a151a8f35d8a08e671f72 (patch) | |
tree | 00efba8886e0204eb14e63a364c52d0d00fae7a1 /src/qt/walletmodel.cpp | |
parent | 391a27376b30492f55b398fc220ee96cf3769a32 (diff) |
gui: Use AutoConnection for WalletModel::unload signal
Diffstat (limited to 'src/qt/walletmodel.cpp')
-rw-r--r-- | src/qt/walletmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index e1fb4819f1..f139152042 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -376,7 +376,7 @@ bool WalletModel::changePassphrase(const SecureString &oldPass, const SecureStri static void NotifyUnload(WalletModel* walletModel) { qDebug() << "NotifyUnload"; - QMetaObject::invokeMethod(walletModel, "unload", Qt::QueuedConnection); + QMetaObject::invokeMethod(walletModel, "unload"); } static void NotifyKeyStoreStatusChanged(WalletModel *walletmodel) |