|
|
@ -20,7 +20,6 @@
|
|
|
|
#include <QCheckBox>
|
|
|
|
#include <QCheckBox>
|
|
|
|
#include <QColor>
|
|
|
|
#include <QColor>
|
|
|
|
#include <QCursor>
|
|
|
|
#include <QCursor>
|
|
|
|
#include <QDateTime>
|
|
|
|
|
|
|
|
#include <QDialogButtonBox>
|
|
|
|
#include <QDialogButtonBox>
|
|
|
|
#include <QFlags>
|
|
|
|
#include <QFlags>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QIcon>
|
|
|
@ -730,7 +729,7 @@ void CoinControlDialog::updateView()
|
|
|
|
itemOutput->setText(COLUMN_AMOUNT_INT64, strPad(QString::number(out.tx->vout[out.i].nValue), 15, " ")); // padding so that sorting works correctly
|
|
|
|
itemOutput->setText(COLUMN_AMOUNT_INT64, strPad(QString::number(out.tx->vout[out.i].nValue), 15, " ")); // padding so that sorting works correctly
|
|
|
|
|
|
|
|
|
|
|
|
// date
|
|
|
|
// date
|
|
|
|
itemOutput->setText(COLUMN_DATE, QDateTime::fromTime_t(out.tx->GetTxTime()).toString("yy-MM-dd hh:mm"));
|
|
|
|
itemOutput->setText(COLUMN_DATE, GUIUtil::dateTimeStr(out.tx->GetTxTime()));
|
|
|
|
|
|
|
|
|
|
|
|
// confirmations
|
|
|
|
// confirmations
|
|
|
|
itemOutput->setText(COLUMN_CONFIRMATIONS, strPad(QString::number(out.nDepth), 8, " "));
|
|
|
|
itemOutput->setText(COLUMN_CONFIRMATIONS, strPad(QString::number(out.nDepth), 8, " "));
|
|
|
|