Show everything by default.

We should show all dives by default.

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2014-09-17 17:52:29 -03:00 committed by Dirk Hohndel
parent 06ebd0ea5e
commit db6126bc52

View file

@ -2140,7 +2140,7 @@ void TagFilterModel::repopulate()
setStringList(list);
delete[] checkState;
checkState = new bool[list.count()];
memset(checkState, false, list.count());
memset(checkState, true, list.count());
checkState[list.count()-1] = true;
}