diff options
| author | João Barbosa <[email protected]> | 2019-01-18 00:23:19 +0000 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2019-01-18 00:27:34 +0000 |
| commit | cefb399e21cc82e18c2a151a8f35d8a08e671f72 (patch) | |
| tree | 00efba8886e0204eb14e63a364c52d0d00fae7a1 /src/qt/walletmodel.cpp | |
| parent | Merge #15173: [doc] explain what .python-version does (diff) | |
| download | discoin-cefb399e21cc82e18c2a151a8f35d8a08e671f72.tar.xz discoin-cefb399e21cc82e18c2a151a8f35d8a08e671f72.zip | |
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 e1fb4819f..f13915204 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) |