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/divepicturemodel.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/divepicturemodel.cpp')
-rw-r--r-- | qt-models/divepicturemodel.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/qt-models/divepicturemodel.cpp b/qt-models/divepicturemodel.cpp index 48fa652c9..8c66f5974 100644 --- a/qt-models/divepicturemodel.cpp +++ b/qt-models/divepicturemodel.cpp @@ -85,9 +85,8 @@ void DivePictureModel::updateDivePictures() endResetModel(); } -int DivePictureModel::columnCount(const QModelIndex &parent) const +int DivePictureModel::columnCount(const QModelIndex&) const { - Q_UNUSED(parent); return 2; } @@ -167,9 +166,8 @@ void DivePictureModel::removePictures(const QVector<QString> &fileUrls) } } -int DivePictureModel::rowCount(const QModelIndex &parent) const +int DivePictureModel::rowCount(const QModelIndex&) const { - Q_UNUSED(parent); return pictures.count(); } |