diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-07-01 17:26:57 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-07-01 17:26:57 +0200 |
| commit | ab90d6e62a8ca17c3c8f617ead57b17e7ba7ee94 (patch) | |
| tree | bc145ba2c5c318b693501606f3041e56ad287c31 /src/qt/transactiontablemodel.cpp | |
| parent | General cleanups (diff) | |
| download | discoin-ab90d6e62a8ca17c3c8f617ead57b17e7ba7ee94.tar.xz discoin-ab90d6e62a8ca17c3c8f617ead57b17e7ba7ee94.zip | |
reverse address and label (suggestion by Danube)
Diffstat (limited to 'src/qt/transactiontablemodel.cpp')
| -rw-r--r-- | src/qt/transactiontablemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index 28d22b853..b2fe167bf 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -332,7 +332,7 @@ QString TransactionTableModel::lookupAddress(const std::string &address) const } else { - description = QString::fromStdString(address.substr(0,12)) + QString("... (") + label + QString(")"); + description = label + QString(" (") + QString::fromStdString(address.substr(0,12)) + QString("...)"); } return description; } |