aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletmodel.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <[email protected]>2013-09-28 19:29:44 +0200
committerPhilip Kaufmann <[email protected]>2013-09-28 19:32:34 +0200
commitd5f0ef54f8a654432df7b4825c0539440cb32ea4 (patch)
tree35f19436b03932354c905c46c26ae0b455476a05 /src/qt/walletmodel.cpp
parentMerge pull request #3034 from fanquake/corect-qt-download-link (diff)
downloaddiscoin-d5f0ef54f8a654432df7b4825c0539440cb32ea4.tar.xz
discoin-d5f0ef54f8a654432df7b4825c0539440cb32ea4.zip
several small Qt-related fixes
- make BitcoinGUI::showPaymentACK() use a reference for msg and use our own GUIUtil::HtmlEscape() function - ensure QTimer usage in clientmodel is the same as in walletmodel - remove an unneeded debug message in walletframe - flag some parameters as unused in DebugMessageHandler() - small code formatting changes
Diffstat (limited to 'src/qt/walletmodel.cpp')
-rw-r--r--src/qt/walletmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp
index 1dcecbe60..bda39b675 100644
--- a/src/qt/walletmodel.cpp
+++ b/src/qt/walletmodel.cpp
@@ -143,7 +143,7 @@ WalletModel::SendCoinsReturn WalletModel::prepareTransaction(WalletModelTransact
foreach(const SendCoinsRecipient &rcp, recipients)
{
if (rcp.paymentRequest.IsInitialized())
- { // PaymentRequest...
+ { // PaymentRequest...
int64 subtotal = 0;
const payments::PaymentDetails& details = rcp.paymentRequest.getDetails();
for (int i = 0; i < details.outputs_size(); i++)