diff options
| author | Philip Kaufmann <[email protected]> | 2013-10-22 21:27:24 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-10-24 15:43:55 +0200 |
| commit | 08dd1b7be172f7ea580dc9bdf20ac15ea9a2ed31 (patch) | |
| tree | 3bb0eca41e4ba5928c56050f6ff097b611f633e8 /src/qt/bitcoingui.cpp | |
| parent | Merge pull request #3135 from Diapolo/bitcoingui (diff) | |
| download | discoin-08dd1b7be172f7ea580dc9bdf20ac15ea9a2ed31.tar.xz discoin-08dd1b7be172f7ea580dc9bdf20ac15ea9a2ed31.zip | |
Qt: move paymentACK handling to paymentserver
- add new slot handlePaymentACK() to paymentserver, which handles
paymentACK messages (currently we just display them)
- make paymentACK message a modal information dialog
- change some QObject::tr() to just tr()
- clarify the processPaymentRequest() error, when IsDust()
- small string change to prevent a tripple + usage with QString
Diffstat (limited to 'src/qt/bitcoingui.cpp')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index cdcf485ca..08ac37155 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -763,11 +763,6 @@ void BitcoinGUI::handlePaymentRequest(const SendCoinsRecipient& recipient) walletFrame->handlePaymentRequest(recipient); } -void BitcoinGUI::showPaymentACK(const QString& msg) -{ - message(tr("Payment acknowledged"), GUIUtil::HtmlEscape(msg), CClientUIInterface::MODAL); -} - void BitcoinGUI::setEncryptionStatus(int status) { switch(status) |