изменение порядка столбцов
authorfsb4000 <fsb4000@yandex.ru>
Wed, 26 Nov 2014 09:14:54 +0000 (15:14 +0600)
committerfsb4000 <fsb4000@yandex.ru>
Wed, 26 Nov 2014 09:14:54 +0000 (15:14 +0600)
src/qt/mintingtablemodel.cpp
src/qt/mintingtablemodel.h

index 1144770..97e3245 100644 (file)
@@ -203,7 +203,7 @@ MintingTableModel::MintingTableModel(CWallet *wallet, WalletModel *parent):
         mintingInterval(10),
         priv(new MintingTablePriv(wallet, this))
 {
-    columns << tr("Transaction") <<  tr("Address") << tr("Age") << tr("Balance") << tr("CoinDay") << tr("MintProbability") << tr("MintReward");
+    columns << tr("Transaction") <<  tr("Address") << tr("Balance") << tr("Age") << tr("CoinDay") << tr("MintProbability") << tr("MintReward");
     priv->refreshWallet();
 
     QTimer *timer = new QTimer(this);
index 68f963c..47c5120 100644 (file)
@@ -20,8 +20,8 @@ public:
     enum ColumnIndex {
         TxHash = 0,
         Address = 1,
-        Age = 2,
-        Balance = 3,
+        Balance = 2,
+        Age = 3,
         CoinDay = 4,
         MintProbability = 5,
         MintReward = 6