aboutsummaryrefslogtreecommitdiff
path: root/src/qt/transactiontablemodel.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-04-04 15:41:07 -0400
committerLuke Dashjr <luke-jr+git@utopios.org>2012-04-04 15:41:07 -0400
commit658cf0b1be93e08eee400b0bd1e9d3485313475d (patch)
treeb36d3fbc1fa71d2c85486c09a1ed6a75de4f3e9f /src/qt/transactiontablemodel.cpp
parentef9ab3c2a0c5f2d8862e7315a01f9cfd7bee242d (diff)
parenta37092fcf427956e31d76aac6bd52e3e3459155f (diff)
Merge branch '0.5.0.x' into 0.5.x
Conflicts: src/qt/bitcoingui.h
Diffstat (limited to 'src/qt/transactiontablemodel.cpp')
-rw-r--r--src/qt/transactiontablemodel.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp
index b863546691..480d4ac25e 100644
--- a/src/qt/transactiontablemodel.cpp
+++ b/src/qt/transactiontablemodel.cpp
@@ -288,20 +288,19 @@ QString TransactionTableModel::formatTxStatus(const TransactionRecord *wtx) cons
}
if(wtx->type == TransactionRecord::Generated)
{
- status += "\n";
switch(wtx->status.maturity)
{
case TransactionStatus::Immature:
- status += tr("Mined balance will be available in %n more blocks", "",
+ status += "\n" + tr("Mined balance will be available in %n more blocks", "",
wtx->status.matures_in);
break;
case TransactionStatus::Mature:
break;
case TransactionStatus::MaturesWarning:
- status += tr("This block was not received by any other nodes and will probably not be accepted!");
+ status += "\n" + tr("This block was not received by any other nodes and will probably not be accepted!");
break;
case TransactionStatus::NotAccepted:
- status += tr("Generated but not accepted");
+ status += "\n" + tr("Generated but not accepted");
break;
}
}