diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-04-01 07:43:18 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-04-01 07:43:18 -0700 |
| commit | 7706c63ddab9bfa8783be00d5aea8b39a0d5fdb7 (patch) | |
| tree | c4ef683147acdc38269ae4281bf33c14a60bcfdd /src | |
| parent | Merge pull request #2433 from laanwj/2013_03_removetransactioncount (diff) | |
| parent | Bitcoin-Qt: fix debug window (diff) | |
| download | discoin-7706c63ddab9bfa8783be00d5aea8b39a0d5fdb7.tar.xz discoin-7706c63ddab9bfa8783be00d5aea8b39a0d5fdb7.zip | |
Merge pull request #2440 from Diapolo/Qt_fix_debug_window
Bitcoin-Qt: fix debug window
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index a48581c6a..7530128fd 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -338,6 +338,7 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel) // Receive and report messages from network/worker thread connect(clientModel, SIGNAL(message(QString,QString,unsigned int)), this, SLOT(message(QString,QString,unsigned int))); + rpcConsole->setClientModel(clientModel); walletFrame->setClientModel(clientModel); } } |