diff options
author | jan Iversen <jani@libreoffice.org> | 2018-05-21 17:53:42 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-21 12:48:04 -0700 |
commit | b0e48a5e8f8b558ed7377d941ddfb96c02387a1f (patch) | |
tree | 077499cc149536b354dfea56540e40fa3e4975aa /qt-models/models.cpp | |
parent | 52031f0abaa87d09c56ecaf5872fa58572ecc9f9 (diff) | |
download | subsurface-b0e48a5e8f8b558ed7377d941ddfb96c02387a1f.tar.gz |
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>
Diffstat (limited to 'qt-models/models.cpp')
-rw-r--r-- | qt-models/models.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/qt-models/models.cpp b/qt-models/models.cpp index f15073111..a0f059165 100644 --- a/qt-models/models.cpp +++ b/qt-models/models.cpp @@ -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(); } |