mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 06:28:31 +01:00
qt, refactor: Use default arguments for overridden functions
See Qt docs for QAbstractTableModel and QAbstractItemModel classes.
This commit is contained in:
@@ -84,7 +84,7 @@ void PeerTableModel::stopAutoRefresh()
|
||||
timer->stop();
|
||||
}
|
||||
|
||||
int PeerTableModel::rowCount(const QModelIndex &parent) const
|
||||
int PeerTableModel::rowCount(const QModelIndex& parent) const
|
||||
{
|
||||
if (parent.isValid()) {
|
||||
return 0;
|
||||
@@ -92,7 +92,7 @@ int PeerTableModel::rowCount(const QModelIndex &parent) const
|
||||
return priv->size();
|
||||
}
|
||||
|
||||
int PeerTableModel::columnCount(const QModelIndex &parent) const
|
||||
int PeerTableModel::columnCount(const QModelIndex& parent) const
|
||||
{
|
||||
if (parent.isValid()) {
|
||||
return 0;
|
||||
@@ -100,7 +100,7 @@ int PeerTableModel::columnCount(const QModelIndex &parent) const
|
||||
return columns.length();
|
||||
}
|
||||
|
||||
QVariant PeerTableModel::data(const QModelIndex &index, int role) const
|
||||
QVariant PeerTableModel::data(const QModelIndex& index, int role) const
|
||||
{
|
||||
if(!index.isValid())
|
||||
return QVariant();
|
||||
@@ -172,7 +172,7 @@ Qt::ItemFlags PeerTableModel::flags(const QModelIndex &index) const
|
||||
return retval;
|
||||
}
|
||||
|
||||
QModelIndex PeerTableModel::index(int row, int column, const QModelIndex &parent) const
|
||||
QModelIndex PeerTableModel::index(int row, int column, const QModelIndex& parent) const
|
||||
{
|
||||
Q_UNUSED(parent);
|
||||
CNodeCombinedStats *data = priv->index(row);
|
||||
|
||||
Reference in New Issue
Block a user