From ab25271d3c1ae34c1086f8d917200042d1cc909c Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sun, 29 Sep 2013 12:28:43 +0200 Subject: [PATCH] Bitcoin-Qt: add missing change from branch Qt_misc - remove an unneeded debug message in walletframe --- src/qt/walletframe.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/qt/walletframe.cpp b/src/qt/walletframe.cpp index 99a6647a..8d6a1b38 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); }