diff options
author | Tomaz Canabrava <tomaz.canabrava@gmail.com> | 2016-03-08 02:24:28 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-08 20:58:17 -0800 |
commit | 5f822948e6e2f5463c35c7409d48cce490894650 (patch) | |
tree | 1e1f56bf7d27c52c76f0f324d4f24b12bc8133d0 /qt-models/cleanertablemodel.cpp | |
parent | 6f494964de86416fe6ce439bacd450fbf443beed (diff) | |
download | subsurface-5f822948e6e2f5463c35c7409d48cce490894650.tar.gz |
Silence warnings in cleanerTableModel
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/cleanertablemodel.cpp')
-rw-r--r-- | qt-models/cleanertablemodel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-models/cleanertablemodel.cpp b/qt-models/cleanertablemodel.cpp index d2405d42f..77d3f3369 100644 --- a/qt-models/cleanertablemodel.cpp +++ b/qt-models/cleanertablemodel.cpp @@ -7,6 +7,7 @@ CleanerTableModel::CleanerTableModel(QObject *parent) : QAbstractTableModel(pare int CleanerTableModel::columnCount(const QModelIndex &parent) const { + Q_UNUSED(parent); return headers.count(); } |