mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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:
parent
135e834019
commit
605d2f7386
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue