1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:27:45 +00:00

Mail: Mark mail as seen after open

This commit is contained in:
Karol Kosek 2023-07-11 20:24:03 +02:00 committed by Sam Atkins
parent 619b53eaca
commit f9a006d092
4 changed files with 19 additions and 2 deletions

View file

@ -33,6 +33,8 @@ public:
virtual ~InboxModel() override = default;
void set_seen(int row, bool);
virtual int row_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override;
virtual int column_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override { return Column::__Count; }
virtual ErrorOr<String> column_name(int) const override;