diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-07-07 21:25:17 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-07-07 21:25:17 +0200 |
| commit | 610121480cc1cd66c08f54c7e67a5440892cc6a2 (patch) | |
| tree | b2e661a2efdc70c7387832fc926cc22ec17cab61 /src/qt/transactiontablemodel.cpp | |
| parent | Add German translation by nico_w (diff) | |
| download | discoin-610121480cc1cd66c08f54c7e67a5440892cc6a2.tar.xz discoin-610121480cc1cd66c08f54c7e67a5440892cc6a2.zip | |
"Status" doesn't fit into narrow first column in transaction history, make the header empty
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 6a7f7aab4..a529dadb1 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -208,7 +208,7 @@ TransactionTableModel::TransactionTableModel(CWallet* wallet, WalletModel *paren walletModel(parent), priv(new TransactionTablePriv(wallet, this)) { - columns << tr("Status") << tr("Date") << tr("Type") << tr("Address") << tr("Amount"); + columns << QString() << tr("Date") << tr("Type") << tr("Address") << tr("Amount"); priv->refreshWallet(); |