diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-09-03 00:27:14 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-09-03 00:27:14 +0300 |
commit | d319c4dae9ed7d59d71b926e677707fce4194d0c (patch) | |
tree | 9edaf41d675ed96010510f673ba779218c6db595 /src/qt/walletframe.h | |
parent | 92ddc02a16a74e10f24190929f05e2dcf2b55871 (diff) |
qt, refactor: Replace WalletFrame::addWallet with WalletFrame::addView
No need to pass an instance of the WalletModel class to this method.
Co-authored-by: João Barbosa <joao.paulo.barbosa@gmail.com>
Diffstat (limited to 'src/qt/walletframe.h')
-rw-r--r-- | src/qt/walletframe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletframe.h b/src/qt/walletframe.h index cbf6af95ec..cfca5c4c5c 100644 --- a/src/qt/walletframe.h +++ b/src/qt/walletframe.h @@ -35,7 +35,7 @@ public: void setClientModel(ClientModel *clientModel); - bool addWallet(WalletModel* walletModel, WalletView* walletView); + bool addView(WalletView* walletView); void setCurrentWallet(WalletModel* wallet_model); void removeWallet(WalletModel* wallet_model); void removeAllWallets(); |