Silence warnings in diveplotdatamodel.cpp

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2016-03-08 02:27:03 -03:00 committed by Dirk Hohndel
parent 6c6e1ce6ff
commit 554b3fe630

View file

@ -14,6 +14,7 @@ DivePlotDataModel::DivePlotDataModel(QObject *parent) :
int DivePlotDataModel::columnCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return COLUMNS;
}
@ -96,6 +97,7 @@ const plot_info &DivePlotDataModel::data() const
int DivePlotDataModel::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return pInfo.nr;
}