summaryrefslogtreecommitdiffstats
path: root/qt-models/filtermodels.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@gmail.com>2016-03-07 03:43:20 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-03-07 11:23:27 -0800
commitbeb0bc7a1d79a652ef002c37a282ee390ae92f0b (patch)
tree0185fd701d8fee2708a7de96d9b91d6dc97677f5 /qt-models/filtermodels.cpp
parentd7d8660bbb7fd0e5a8f3da6631ec02512f0cb49a (diff)
downloadsubsurface-beb0bc7a1d79a652ef002c37a282ee390ae92f0b.tar.gz
Silence more warnings
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/filtermodels.cpp')
-rw-r--r--qt-models/filtermodels.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/qt-models/filtermodels.cpp b/qt-models/filtermodels.cpp
index cbb83d06f..452b1077f 100644
--- a/qt-models/filtermodels.cpp
+++ b/qt-models/filtermodels.cpp
@@ -78,6 +78,9 @@ SuitsFilterModel::SuitsFilterModel(QObject *parent) : QStringListModel(parent)
bool SuitsFilterModel::doFilter(dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const
{
+ Q_UNUSED(index0);
+ Q_UNUSED(sourceModel);
+
if (!anyChecked) {
return true;
}
@@ -153,6 +156,9 @@ void TagFilterModel::repopulate()
bool TagFilterModel::doFilter(dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const
{
+ Q_UNUSED(index0);
+ Q_UNUSED(sourceModel);
+
// If there's nothing checked, this should show everything
if (!anyChecked) {
return true;
@@ -188,6 +194,9 @@ BuddyFilterModel::BuddyFilterModel(QObject *parent) : QStringListModel(parent)
bool BuddyFilterModel::doFilter(dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const
{
+ Q_UNUSED(index0);
+ Q_UNUSED(sourceModel);
+
// If there's nothing checked, this should show everything
if (!anyChecked) {
return true;
@@ -246,6 +255,9 @@ LocationFilterModel::LocationFilterModel(QObject *parent) : QStringListModel(par
bool LocationFilterModel::doFilter(struct dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const
{
+ Q_UNUSED(index0);
+ Q_UNUSED(sourceModel);
+
if (!anyChecked) {
return true;
}