Skip to content
Snippets Groups Projects
Commit e1ae2e7c authored by Andrey Lihatskiy's avatar Andrey Lihatskiy
Browse files

Mac buildfix

parent d07dea27
No related branches found
No related tags found
No related merge requests found
......@@ -336,8 +336,8 @@ class LLFolderViewModel : public LLFolderViewModelCommon
virtual const SortType& getSorter() const { return *mSorter; }
virtual void setSorter(const SortType& sorter) { mSorter = new SortType(sorter); requestSortAll(); }
virtual FilterType& getFilter() { return *mFilter; }
virtual const FilterType& getFilter() const { return *mFilter; }
virtual FilterType& getFilter() override { return *mFilter; }
virtual const FilterType& getFilter() const override { return *mFilter; }
virtual void setFilter(const FilterType& filter) { mFilter = new FilterType(filter); }
// By default, we assume the content is available. If a network fetch mechanism is implemented for the model,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment