Browse Source

Bitcoin-Qt: add missing change from branch Qt_misc

- remove an unneeded debug message in walletframe
0.10
Philip Kaufmann 11 years ago
parent
commit
ab25271d3c
  1. 7
      src/qt/walletframe.cpp

7
src/qt/walletframe.cpp

@ -56,12 +56,9 @@ bool WalletFrame::handlePaymentRequest(const SendCoinsRecipient &recipient) @@ -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);
}

Loading…
Cancel
Save