summaryrefslogtreecommitdiffstats
path: root/qt-models/filtermodels.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2018-12-16 20:43:01 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-01-19 13:59:24 -0800
commit36fa27050c749717e186c8564d88b11bd53a96c8 (patch)
tree93a3c0248a4406f839cc71455c565c66fe583cf9 /qt-models/filtermodels.h
parentcc0c4ab2f16612a145064887614e3f86fe125209 (diff)
downloadsubsurface-36fa27050c749717e186c8564d88b11bd53a96c8.tar.gz
Filter: update filterData directly without copying
In FilterWidget2::updateFilter() a new FilterData object is generated and then copied onto the filterData member variable. Instead, modify filterData directly. This seems also more logical from a semantic point of view: Do we want to reset fields that were not set by the user? Contains trivial whitespace fix. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/filtermodels.h')
-rw-r--r--qt-models/filtermodels.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/filtermodels.h b/qt-models/filtermodels.h
index b16ce4a3b..5cb130522 100644
--- a/qt-models/filtermodels.h
+++ b/qt-models/filtermodels.h
@@ -51,7 +51,7 @@ slots:
void stopFilterDiveSite();
void filterChanged(const QModelIndex &from, const QModelIndex &to, const QVector<int> &roles);
void resetModel(DiveTripModelBase::Layout layout);
- void filterDataChanged(const FilterData& data);
+ void filterDataChanged(const FilterData &data);
signals:
void filterFinished();