diff options
author | Tomaz Canabrava <tomaz.canabrava@gmail.com> | 2015-05-17 14:39:07 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-05-17 13:44:51 -0700 |
commit | e61e127715ff6937d95bcc4dc448198ccb9727b9 (patch) | |
tree | 47bbb74ecc7b2329fcfff4c620fdf9bdc7b1d622 | |
parent | 96850b993194e77517e9df25d888b8f45e618f0c (diff) | |
download | subsurface-e61e127715ff6937d95bcc4dc448198ccb9727b9.tar.gz |
Remove extra ; at the end of lines.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-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 f44ab7cf8..be26a253b 100644 --- a/qt-ui/filtermodels.cpp +++ b/qt-ui/filtermodels.cpp @@ -64,12 +64,12 @@ CREATE_MODEL_SET_DATA_METHOD( CLASS ); \ CREATE_INSTANCE_METHOD( CLASS ); \ CREATE_DATA_METHOD( CLASS, COUNTER_FUNCTION ) -CREATE_COMMON_METHODS_FOR_FILTER(TagFilterModel, count_dives_with_tag); -CREATE_COMMON_METHODS_FOR_FILTER(BuddyFilterModel, count_dives_with_person); -CREATE_COMMON_METHODS_FOR_FILTER(LocationFilterModel, count_dives_with_location); -CREATE_COMMON_METHODS_FOR_FILTER(SuitsFilterModel, count_dives_with_suit); +CREATE_COMMON_METHODS_FOR_FILTER(TagFilterModel, count_dives_with_tag) +CREATE_COMMON_METHODS_FOR_FILTER(BuddyFilterModel, count_dives_with_person) +CREATE_COMMON_METHODS_FOR_FILTER(LocationFilterModel, count_dives_with_location) +CREATE_COMMON_METHODS_FOR_FILTER(SuitsFilterModel, count_dives_with_suit) -CREATE_INSTANCE_METHOD(MultiFilterSortModel); +CREATE_INSTANCE_METHOD(MultiFilterSortModel) SuitsFilterModel::SuitsFilterModel(QObject *parent) : QStringListModel(parent) { |