MultiFilterInterface - initilize member + remove extra ;

initialize member 'anyChecked' in the constructor

Signed-off-by: Marcos CARDINOT <mcardinot@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Marcos CARDINOT 2015-03-25 02:48:20 -03:00 committed by Dirk Hohndel
parent 135e834019
commit 605d2f7386

View file

@ -6,7 +6,7 @@
class MultiFilterInterface {
public:
MultiFilterInterface() : checkState(NULL){};
MultiFilterInterface() : checkState(NULL), anyChecked(false) {}
virtual bool doFilter(struct dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const = 0;
virtual void clearFilter() = 0;
bool *checkState;