mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 19:23:26 -03:00
[Qt] remove unused timer-code from banlistmodel.cpp
This commit is contained in:
parent
e2b8028e4c
commit
43c1f5b8d7
2 changed files with 1 additions and 23 deletions
|
@ -13,7 +13,6 @@
|
||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
#include <QTimer>
|
|
||||||
|
|
||||||
#include <boost/date_time/posix_time/posix_time.hpp>
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
||||||
#include <boost/date_time/c_local_time_adjustor.hpp>
|
#include <boost/date_time/c_local_time_adjustor.hpp>
|
||||||
|
@ -65,33 +64,17 @@ public:
|
||||||
|
|
||||||
BanTableModel::BanTableModel(ClientModel *parent) :
|
BanTableModel::BanTableModel(ClientModel *parent) :
|
||||||
QAbstractTableModel(parent),
|
QAbstractTableModel(parent),
|
||||||
clientModel(parent),
|
clientModel(parent)
|
||||||
timer(0)
|
|
||||||
{
|
{
|
||||||
columns << tr("IP/Netmask") << tr("Banned Until");
|
columns << tr("IP/Netmask") << tr("Banned Until");
|
||||||
priv = new BanTablePriv();
|
priv = new BanTablePriv();
|
||||||
// default to unsorted
|
// default to unsorted
|
||||||
priv->sortColumn = -1;
|
priv->sortColumn = -1;
|
||||||
|
|
||||||
// set up timer for auto refresh
|
|
||||||
timer = new QTimer();
|
|
||||||
connect(timer, SIGNAL(timeout()), SLOT(refresh()));
|
|
||||||
timer->setInterval(MODEL_UPDATE_DELAY);
|
|
||||||
|
|
||||||
// load initial data
|
// load initial data
|
||||||
refresh();
|
refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
void BanTableModel::startAutoRefresh()
|
|
||||||
{
|
|
||||||
timer->start();
|
|
||||||
}
|
|
||||||
|
|
||||||
void BanTableModel::stopAutoRefresh()
|
|
||||||
{
|
|
||||||
timer->stop();
|
|
||||||
}
|
|
||||||
|
|
||||||
int BanTableModel::rowCount(const QModelIndex &parent) const
|
int BanTableModel::rowCount(const QModelIndex &parent) const
|
||||||
{
|
{
|
||||||
Q_UNUSED(parent);
|
Q_UNUSED(parent);
|
||||||
|
|
|
@ -13,10 +13,6 @@
|
||||||
class ClientModel;
|
class ClientModel;
|
||||||
class BanTablePriv;
|
class BanTablePriv;
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
|
||||||
class QTimer;
|
|
||||||
QT_END_NAMESPACE
|
|
||||||
|
|
||||||
struct CCombinedBan {
|
struct CCombinedBan {
|
||||||
CSubNet subnet;
|
CSubNet subnet;
|
||||||
int64_t bantil;
|
int64_t bantil;
|
||||||
|
@ -59,7 +55,6 @@ private:
|
||||||
ClientModel *clientModel;
|
ClientModel *clientModel;
|
||||||
QStringList columns;
|
QStringList columns;
|
||||||
BanTablePriv *priv;
|
BanTablePriv *priv;
|
||||||
QTimer *timer;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // BITCOIN_QT_BANTABLEMODEL_H
|
#endif // BITCOIN_QT_BANTABLEMODEL_H
|
||||||
|
|
Loading…
Add table
Reference in a new issue