diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-11-04 23:34:57 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-11-04 23:34:57 -0800 |
| commit | 86406daeca0390b13457cc4f8d5f24fa5bf54557 (patch) | |
| tree | 76f5a2899688b84bbd348f91bbad0118a4e0b3ed /src/qt/bitcoingui.cpp | |
| parent | Merge pull request #1971 from sipa/bugfix_norelayspent (diff) | |
| parent | fix some double-spaces in strings (diff) | |
| download | discoin-86406daeca0390b13457cc4f8d5f24fa5bf54557.tar.xz discoin-86406daeca0390b13457cc4f8d5f24fa5bf54557.zip | |
Merge pull request #1830 from Diapolo/trans_rem_spaces
fix some double-spaces in strings
Diffstat (limited to 'src/qt/bitcoingui.cpp')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index c09e1ce44..988f4185b 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -625,11 +625,9 @@ void BitcoinGUI::closeEvent(QCloseEvent *event) void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee) { - QString strMessage = - tr("This transaction is over the size limit. You can still send it for a fee of %1, " - "which goes to the nodes that process your transaction and helps to support the network. " - "Do you want to pay the fee?").arg( - BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nFeeRequired)); + QString strMessage = tr("This transaction is over the size limit. You can still send it for a fee of %1, " + "which goes to the nodes that process your transaction and helps to support the network. " + "Do you want to pay the fee?").arg(BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nFeeRequired)); QMessageBox::StandardButton retval = QMessageBox::question( this, tr("Confirm transaction fee"), strMessage, QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes); |