summaryrefslogtreecommitdiffstats
path: root/qt-ui/filtermodels.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-11-13 12:51:23 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-11-13 12:52:35 -0800
commitac9ead4571f3c1546c0cd88a39088f91b01929b3 (patch)
tree98db69bc3ddbf77a9b2d789ff37cba635709dd02 /qt-ui/filtermodels.cpp
parent8086b39e11da344f9c931ea8d325d2ef94982913 (diff)
downloadsubsurface-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.cpp10
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;