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

@ -132,7 +132,7 @@ public:
virtual bool is_editable(const ModelIndex&) const override;
virtual bool is_searchable() const override { return true; }
virtual void set_data(const ModelIndex&, const Variant&) override;
virtual Vector<ModelIndex, 1> matches(const StringView&, unsigned = MatchesFlag::AllMatching, const ModelIndex& = ModelIndex()) override;
virtual Vector<ModelIndex> matches(const StringView&, unsigned = MatchesFlag::AllMatching, const ModelIndex& = ModelIndex()) override;
virtual void invalidate() override;
static String timestamp_string(time_t timestamp)