qt, refactor: Drop no longer used PeerTableModel::getNodeStats function

This commit is contained in:
Hennadii Stepanov
2020-12-24 12:40:35 +02:00
parent 49c604077c
commit b3e9bcaac8
2 changed files with 0 additions and 6 deletions

View File

@@ -221,11 +221,6 @@ QModelIndex PeerTableModel::index(int row, int column, const QModelIndex &parent
return QModelIndex();
}
const CNodeCombinedStats *PeerTableModel::getNodeStats(int idx)
{
return priv->index(idx);
}
void PeerTableModel::refresh()
{
Q_EMIT layoutAboutToBeChanged();

View File

@@ -53,7 +53,6 @@ class PeerTableModel : public QAbstractTableModel
public:
explicit PeerTableModel(interfaces::Node& node, QObject* parent);
~PeerTableModel();
const CNodeCombinedStats *getNodeStats(int idx);
int getRowByNodeId(NodeId nodeid);
void startAutoRefresh();
void stopAutoRefresh();