summaryrefslogtreecommitdiffstats
path: root/qt-models/diveplotdatamodel.cpp
diff options
context:
space:
mode:
authorGravatar jan Iversen <jani@libreoffice.org>2018-05-21 17:53:42 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-05-21 12:48:04 -0700
commitb0e48a5e8f8b558ed7377d941ddfb96c02387a1f (patch)
tree077499cc149536b354dfea56540e40fa3e4975aa /qt-models/diveplotdatamodel.cpp
parent52031f0abaa87d09c56ecaf5872fa58572ecc9f9 (diff)
downloadsubsurface-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/diveplotdatamodel.cpp')
-rw-r--r--qt-models/diveplotdatamodel.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/qt-models/diveplotdatamodel.cpp b/qt-models/diveplotdatamodel.cpp
index 203ac3bd2..35490a0a3 100644
--- a/qt-models/diveplotdatamodel.cpp
+++ b/qt-models/diveplotdatamodel.cpp
@@ -14,9 +14,8 @@ DivePlotDataModel::DivePlotDataModel(QObject *parent) :
memset(&plot_deco_state, 0, sizeof(struct deco_state));
}
-int DivePlotDataModel::columnCount(const QModelIndex &parent) const
+int DivePlotDataModel::columnCount(const QModelIndex&) const
{
- Q_UNUSED(parent);
return COLUMNS;
}
@@ -97,9 +96,8 @@ const plot_info &DivePlotDataModel::data() const
return pInfo;
}
-int DivePlotDataModel::rowCount(const QModelIndex &parent) const
+int DivePlotDataModel::rowCount(const QModelIndex&) const
{
- Q_UNUSED(parent);
return pInfo.nr;
}