diff options
| author | Jonas Schnelli <[email protected]> | 2016-09-21 10:29:57 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2016-09-23 16:07:21 +0200 |
| commit | 08827df3ecce925928dc3bedcdef63bfca290300 (patch) | |
| tree | 29d9b9a06371b8f4d6b66036d9f98f3def55b7ae /src/qt/bitcoingui.cpp | |
| parent | [Qt] only update "amount of blocks left" when the header chain is in-sync (diff) | |
| download | discoin-08827df3ecce925928dc3bedcdef63bfca290300.tar.xz discoin-08827df3ecce925928dc3bedcdef63bfca290300.zip | |
[Qt] modalinfolayer: removed unused comments, renamed signal, code style overhaul
Diffstat (limited to 'src/qt/bitcoingui.cpp')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index c184745db..2a9afc51a 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -247,7 +247,7 @@ BitcoinGUI::BitcoinGUI(const PlatformStyle *platformStyle, const NetworkStyle *n modalOverlay = new ModalOverlay(this->centralWidget()); #ifdef ENABLE_WALLET if(enableWallet) - connect(walletFrame, SIGNAL(requestedOfSyncWarningInfo()), this, SLOT(showModalOverlay())); + connect(walletFrame, SIGNAL(requestedSyncWarningInfo()), this, SLOT(showModalOverlay())); #endif } @@ -717,13 +717,13 @@ void BitcoinGUI::setNumBlocks(int count, const QDateTime& blockDate, double nVer { if (modalOverlay) { - if (header) - { + if (header) { /* use clientmodels getHeaderTipHeight and getHeaderTipTime because the NotifyHeaderTip signal does not fire when updating the best header */ modalOverlay->setKnownBestHeight(clientModel->getHeaderTipHeight(), QDateTime::fromTime_t(clientModel->getHeaderTipTime())); } - else + else { modalOverlay->tipUpdate(count, blockDate, nVerificationProgress); + } } if (!clientModel) return; |