diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-11-13 12:51:23 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-11-13 12:52:35 -0800 |
commit | ac9ead4571f3c1546c0cd88a39088f91b01929b3 (patch) | |
tree | 98db69bc3ddbf77a9b2d789ff37cba635709dd02 /qt-ui/filtermodels.cpp | |
parent | 8086b39e11da344f9c931ea8d325d2ef94982913 (diff) | |
download | subsurface-ac9ead4571f3c1546c0cd88a39088f91b01929b3.tar.gz |
Random whitespace cleanup
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/filtermodels.cpp')
-rw-r--r-- | qt-ui/filtermodels.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qt-ui/filtermodels.cpp b/qt-ui/filtermodels.cpp index ae98e5ce4..5b2553d96 100644 --- a/qt-ui/filtermodels.cpp +++ b/qt-ui/filtermodels.cpp @@ -71,7 +71,7 @@ CREATE_COMMON_METHODS_FOR_FILTER(SuitsFilterModel, count_dives_with_suit); CREATE_INSTANCE_METHOD(MultiFilterSortModel); -SuitsFilterModel::SuitsFilterModel(QObject *parent): QStringListModel(parent) +SuitsFilterModel::SuitsFilterModel(QObject *parent) : QStringListModel(parent) { } @@ -273,7 +273,7 @@ void BuddyFilterModel::repopulate() int i = 0; for_each_dive (i, dive) { QString persons = QString(dive->buddy) + "," + QString(dive->divemaster); - Q_FOREACH(const QString& person, persons.split(',', QString::SkipEmptyParts)){ + Q_FOREACH (const QString &person, persons.split(',', QString::SkipEmptyParts)) { // Remove any leading spaces if (!list.contains(person.trimmed())) { list.append(person.trimmed()); @@ -405,9 +405,9 @@ void MultiFilterSortModel::myInvalidate() } else { // otherwise find the dives that should still be selected (the filter above unselected any // dive that's no longer visible) and select them again - QList<int>curSelectedDives; + QList<int> curSelectedDives; for_each_dive (i, d) { - if(d->selected) + if (d->selected) curSelectedDives.append(get_divenr(d)); } dlv->selectDives(curSelectedDives); @@ -433,7 +433,7 @@ void MultiFilterSortModel::removeFilterModel(MultiFilterInterface *model) void MultiFilterSortModel::clearFilter() { justCleared = true; - Q_FOREACH(MultiFilterInterface *iface, models){ + Q_FOREACH (MultiFilterInterface *iface, models) { iface->clearFilter(); } justCleared = false; |