diff --git a/QMLComponents/models/listmodelfiltereddataentry.cpp b/QMLComponents/models/listmodelfiltereddataentry.cpp index efae7915ee..1aaadf883f 100644 --- a/QMLComponents/models/listmodelfiltereddataentry.cpp +++ b/QMLComponents/models/listmodelfiltereddataentry.cpp @@ -1,11 +1,10 @@ #include "listmodelfiltereddataentry.h" +#include "columnutils.h" #include "controls/tableviewbase.h" #include "utilities/qutils.h" #include "log.h" #include "controls/jaspcontrol.h" #include "filter.h" -#include "dataset.h" -#include "columnutils.h" ListModelFilteredDataEntry::ListModelFilteredDataEntry(TableViewBase * parent) : ListModelTableViewBase(parent) @@ -63,7 +62,7 @@ void ListModelFilteredDataEntry::runFilter() { if(!_filter) //prob still need to bind return; - + runFilterByName(tq(_filter->name())); }