diff options
author | Tomaz Canabrava <tomaz.canabrava@gmail.com> | 2016-03-09 15:16:11 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-09 11:44:07 -0800 |
commit | 8378d3dd4b333a7746be8d8b15c0c4612e924e7d (patch) | |
tree | cceee2f117e52c4c3c7ced738957966b19bfaee1 /qt-models/divecomputermodel.cpp | |
parent | 0f386420e0fea9e116290767c72ef45bf657bf0e (diff) | |
download | subsurface-8378d3dd4b333a7746be8d8b15c0c4612e924e7d.tar.gz |
Silence warnings in divecomputermodel.cpp
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/divecomputermodel.cpp')
-rw-r--r-- | qt-models/divecomputermodel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-models/divecomputermodel.cpp b/qt-models/divecomputermodel.cpp index 7b87d872d..58641ff77 100644 --- a/qt-models/divecomputermodel.cpp +++ b/qt-models/divecomputermodel.cpp @@ -47,6 +47,7 @@ QVariant DiveComputerModel::data(const QModelIndex &index, int role) const int DiveComputerModel::rowCount(const QModelIndex &parent) const { + Q_UNUSED(parent); return numRows; } |