diff options
author | João Barbosa <joao.paulo.barbosa@gmail.com> | 2018-11-22 11:36:07 +0000 |
---|---|---|
committer | João Barbosa <joao.paulo.barbosa@gmail.com> | 2019-01-04 15:22:13 +0000 |
commit | b2ce86c3ad79db49ddf06207230512300ec11156 (patch) | |
tree | 8870df879bd109b0a0c965961afb478c98819ea2 /src/qt/bitcoingui.h | |
parent | d2a1adffebee86763fafc6f3ed2722f7038654c7 (diff) |
qt: Use WalletModel* instead of wallet name in main window
Diffstat (limited to 'src/qt/bitcoingui.h')
-rw-r--r-- | src/qt/bitcoingui.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index aeff5dae30..1324dd6625 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011-2018 The Bitcoin Core developers +// Copyright (c) 2011-2019 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -206,7 +206,7 @@ public Q_SLOTS: void message(const QString &title, const QString &message, unsigned int style, bool *ret = nullptr); #ifdef ENABLE_WALLET - bool setCurrentWallet(const QString& name); + bool setCurrentWallet(WalletModel* wallet_model); bool setCurrentWalletBySelectorIndex(int index); /** Set the UI status indicators based on the currently selected wallet. */ |