diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-11-07 23:04:54 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-07 22:26:32 -0800 |
commit | 44c0f978b33154611966b3f9db4c7e0cf54a9ffc (patch) | |
tree | 70a421f9e5c3b294b1997436bddbd01f09f24ff3 | |
parent | e2550de5e6a94cd8f7b6a45d1de1c4547489a177 (diff) | |
download | subsurface-44c0f978b33154611966b3f9db4c7e0cf54a9ffc.tar.gz |
filtermodels.cpp: fix an argument order warning
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
-rw-r--r-- | qt-models/filtermodels.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-models/filtermodels.cpp b/qt-models/filtermodels.cpp index f56f4be1c..cbb83d06f 100644 --- a/qt-models/filtermodels.cpp +++ b/qt-models/filtermodels.cpp @@ -295,9 +295,9 @@ void LocationFilterModel::repopulate() MultiFilterSortModel::MultiFilterSortModel(QObject *parent) : QSortFilterProxyModel(parent), + divesDisplayed(0), justCleared(false), - curr_dive_site(NULL), - divesDisplayed(0) + curr_dive_site(NULL) { } |