mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
qt-models: Change Q_UNUSED to no parameter name
C++ permits use of parameters without name, which signals unused Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
parent
52031f0aba
commit
b0e48a5e8f
18 changed files with 39 additions and 90 deletions
|
@ -24,9 +24,8 @@ const QPixmap &trashForbiddenIcon()
|
|||
return trash;
|
||||
}
|
||||
|
||||
Qt::ItemFlags GasSelectionModel::flags(const QModelIndex &index) const
|
||||
Qt::ItemFlags GasSelectionModel::flags(const QModelIndex&) const
|
||||
{
|
||||
Q_UNUSED(index);
|
||||
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
|
||||
}
|
||||
|
||||
|
@ -69,9 +68,8 @@ QVariant GasSelectionModel::data(const QModelIndex &index, int role) const
|
|||
}
|
||||
// Dive Type Model for the divetype combo box
|
||||
|
||||
Qt::ItemFlags DiveTypeSelectionModel::flags(const QModelIndex &index) const
|
||||
Qt::ItemFlags DiveTypeSelectionModel::flags(const QModelIndex&) const
|
||||
{
|
||||
Q_UNUSED(index);
|
||||
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
|
||||
}
|
||||
|
||||
|
@ -134,8 +132,7 @@ QVariant LanguageModel::data(const QModelIndex &index, int role) const
|
|||
return QVariant();
|
||||
}
|
||||
|
||||
int LanguageModel::rowCount(const QModelIndex &parent) const
|
||||
int LanguageModel::rowCount(const QModelIndex&) const
|
||||
{
|
||||
Q_UNUSED(parent);
|
||||
return languages.count();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue