aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletframe.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2013-10-03 21:42:27 -0700
committerGavin Andresen <[email protected]>2013-10-03 21:42:27 -0700
commita68fd1ca14e3472a49be11d3337ef10861e1c2cc (patch)
tree5d3c35a8950d8e949732c9647ae3b184c0966d14 /src/qt/walletframe.cpp
parentMerge pull request #3050 from Diapolo/fix_IsRFC4193_comment (diff)
parentBitcoin-Qt: add missing change from branch Qt_misc (diff)
downloaddiscoin-a68fd1ca14e3472a49be11d3337ef10861e1c2cc.tar.xz
discoin-a68fd1ca14e3472a49be11d3337ef10861e1c2cc.zip
Merge pull request #3040 from Diapolo/Qt_misc2
Bitcoin-Qt: add missing change from branch Qt_misc
Diffstat (limited to 'src/qt/walletframe.cpp')
-rw-r--r--src/qt/walletframe.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/qt/walletframe.cpp b/src/qt/walletframe.cpp
index 99a6647a6..8d6a1b387 100644
--- a/src/qt/walletframe.cpp
+++ b/src/qt/walletframe.cpp
@@ -56,12 +56,9 @@ bool WalletFrame::handlePaymentRequest(const SendCoinsRecipient &recipient)
void WalletFrame::showOutOfSyncWarning(bool fShow)
{
- if (!walletStack) {
- QMessageBox box;
- box.setText("walletStack is null");
- box.exec();
+ if (!walletStack)
return;
- }
+
walletStack->showOutOfSyncWarning(fShow);
}