diff options
author | Tomaz Canabrava <tomaz.canabrava@gmail.com> | 2016-03-08 02:25:05 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-08 20:58:21 -0800 |
commit | 14ad5b0bd28e721954a8b54a29353266b790cd24 (patch) | |
tree | d5c7768a17940ac994e85d85642fc49db3ec8592 /qt-models/divecomputerextradatamodel.cpp | |
parent | fb037ba55fbaa7b2005b95cc9f13b76a7cc7e297 (diff) | |
download | subsurface-14ad5b0bd28e721954a8b54a29353266b790cd24.tar.gz |
Silence warnings in Divecomputerextradatamodel.cpp
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/divecomputerextradatamodel.cpp')
-rw-r--r-- | qt-models/divecomputerextradatamodel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-models/divecomputerextradatamodel.cpp b/qt-models/divecomputerextradatamodel.cpp index 8c0c828e3..0f89a2a6b 100644 --- a/qt-models/divecomputerextradatamodel.cpp +++ b/qt-models/divecomputerextradatamodel.cpp @@ -51,6 +51,7 @@ QVariant ExtraDataModel::data(const QModelIndex &index, int role) const int ExtraDataModel::rowCount(const QModelIndex &parent) const { + Q_UNUSED(parent); return rows; } |