From b0e48a5e8f8b558ed7377d941ddfb96c02387a1f Mon Sep 17 00:00:00 2001 From: jan Iversen Date: Mon, 21 May 2018 17:53:42 +0200 Subject: qt-models: Change Q_UNUSED to no parameter name C++ permits use of parameters without name, which signals unused Signed-off-by: Jan Iversen --- qt-models/divelocationmodel.cpp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'qt-models/divelocationmodel.cpp') diff --git a/qt-models/divelocationmodel.cpp b/qt-models/divelocationmodel.cpp index 3de2c1159..c706744a3 100644 --- a/qt-models/divelocationmodel.cpp +++ b/qt-models/divelocationmodel.cpp @@ -24,15 +24,13 @@ LocationInformationModel::LocationInformationModel(QObject *obj) : QAbstractTabl { } -int LocationInformationModel::columnCount(const QModelIndex &parent) const +int LocationInformationModel::columnCount(const QModelIndex&) const { - Q_UNUSED(parent); return COLUMNS; } -int LocationInformationModel::rowCount(const QModelIndex &parent) const +int LocationInformationModel::rowCount(const QModelIndex&) const { - Q_UNUSED(parent); return internalRowCount + 2; } @@ -154,10 +152,8 @@ bool LocationInformationModel::setData(const QModelIndex &index, const QVariant return true; } -bool LocationInformationModel::removeRows(int row, int count, const QModelIndex & parent) +bool LocationInformationModel::removeRows(int row, int, const QModelIndex&) { - Q_UNUSED(count); - Q_UNUSED(parent); if(row >= rowCount()) return false; -- cgit v1.2.3-70-g09d2