LibGUI: Remove an unnecessarily specific inline capacity

This commit is contained in:
Dawid Wolosowicz 2021-09-07 16:16:02 +02:00 committed by Ali Mohammad Pur
commit 2d91ba2737
Notes: sideshowbarker 2024-07-18 04:26:30 +09:00
8 changed files with 10 additions and 10 deletions

View file

@ -75,7 +75,7 @@ public:
virtual void set_data(const ModelIndex&, const Variant&) { }
virtual int tree_column() const { return 0; }
virtual bool accepts_drag(const ModelIndex&, const Vector<String>& mime_types) const;
virtual Vector<ModelIndex, 1> matches(const StringView&, unsigned = MatchesFlag::AllMatching, const ModelIndex& = ModelIndex()) { return {}; }
virtual Vector<ModelIndex> matches(const StringView&, unsigned = MatchesFlag::AllMatching, const ModelIndex& = ModelIndex()) { return {}; }
virtual bool is_column_sortable([[maybe_unused]] int column_index) const { return true; }
virtual void sort([[maybe_unused]] int column, SortOrder) { }