Filter widget: make Ui class subobject of widget

Commit 8e81d3f100 changed a bunch
of Ui classes to be subobject of the widget. For consistency do
the same with the filter widget.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2019-01-17 23:01:57 +01:00 committed by Dirk Hohndel
parent ed09e6a909
commit 424f1e98af
2 changed files with 51 additions and 55 deletions

View file

@ -29,7 +29,7 @@ public slots:
void updateLogged(int value);
private:
std::unique_ptr<Ui::FilterWidget2> ui;
Ui::FilterWidget2 ui;
void filterDataChanged(const FilterData &data);
FilterData filterData;
};