diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-07-07 21:25:17 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-07-07 21:25:17 +0200 |
commit | 610121480cc1cd66c08f54c7e67a5440892cc6a2 (patch) | |
tree | b2e661a2efdc70c7387832fc926cc22ec17cab61 /src/qt/transactiontablemodel.cpp | |
parent | ba3d0255fcb0a661097a7d4b67cd16a1da26cddc (diff) |
"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 6a7f7aab4a..a529dadb1a 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(); |