mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
Qt: pass clientmodel changes from walletframe to walletviews
This commit is contained in:
parent
23fab1a3df
commit
2af3e16ca9
@ -37,6 +37,10 @@ WalletFrame::~WalletFrame()
|
||||
void WalletFrame::setClientModel(ClientModel *_clientModel)
|
||||
{
|
||||
this->clientModel = _clientModel;
|
||||
|
||||
for (auto i = mapWalletViews.constBegin(); i != mapWalletViews.constEnd(); ++i) {
|
||||
i.value()->setClientModel(_clientModel);
|
||||
}
|
||||
}
|
||||
|
||||
bool WalletFrame::addWallet(WalletModel *walletModel)
|
||||
|
Loading…
Reference in New Issue
Block a user