mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-14 06:32:33 +01:00
Remove direct bitcoin calls from qt/utilitydialog.cpp
This commit is contained in:
committed by
John Newbery
parent
3d619e9d36
commit
c2f672fb19
@@ -153,7 +153,7 @@ BitcoinGUI::BitcoinGUI(interface::Node& node, const PlatformStyle *_platformStyl
|
||||
#endif
|
||||
|
||||
rpcConsole = new RPCConsole(_platformStyle, 0);
|
||||
helpMessageDialog = new HelpMessageDialog(this, false);
|
||||
helpMessageDialog = new HelpMessageDialog(node, this, false);
|
||||
#ifdef ENABLE_WALLET
|
||||
if(enableWallet)
|
||||
{
|
||||
@@ -668,7 +668,7 @@ void BitcoinGUI::aboutClicked()
|
||||
if(!clientModel)
|
||||
return;
|
||||
|
||||
HelpMessageDialog dlg(this, true);
|
||||
HelpMessageDialog dlg(m_node, this, true);
|
||||
dlg.exec();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user