1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 10:01:13 +09:00

LibGUI: Remove Model::row_name() since nothing used it

This commit is contained in:
Andreas Kling 2020-05-21 20:19:43 +02:00
parent 278b307713
commit 248f2d5cf5
Notes: sideshowbarker 2024-07-19 06:16:33 +09:00
3 changed files with 0 additions and 7 deletions

View file

@ -67,7 +67,6 @@ public:
virtual int row_count(const ModelIndex& = ModelIndex()) const = 0;
virtual int column_count(const ModelIndex& = ModelIndex()) const = 0;
virtual String row_name(int) const { return {}; }
virtual String column_name(int) const { return {}; }
virtual Variant data(const ModelIndex&, Role = Role::Display) const = 0;
virtual void update() = 0;