diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-09-29 12:28:43 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-10-01 14:15:19 +0200 |
commit | ab25271d3c1ae34c1086f8d917200042d1cc909c (patch) | |
tree | a724e6199aa3933e15dddd407d872f91622e0270 /src/qt/walletframe.cpp | |
parent | b85560a1b569547b1a06998d54ff16573a0076bd (diff) |
Bitcoin-Qt: add missing change from branch Qt_misc
- remove an unneeded debug message in walletframe
Diffstat (limited to 'src/qt/walletframe.cpp')
-rw-r--r-- | src/qt/walletframe.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/qt/walletframe.cpp b/src/qt/walletframe.cpp index 99a6647a65..8d6a1b387e 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); } |