mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 13:19:47 +00:00
LibGUI: Rename ModelClient::on_model_update() => model_did_update()
This follows the typical client callback naming scheme used elsewhere and doesn't collide with the "on_foo" Function hook convention.
This commit is contained in:
@@ -57,7 +57,8 @@ public:
|
||||
private:
|
||||
explicit SortingProxyModel(NonnullRefPtr<Model> source);
|
||||
|
||||
virtual void on_model_update(unsigned) override;
|
||||
// ^ModelClient
|
||||
virtual void model_did_update(unsigned) override;
|
||||
|
||||
Model& source() { return *m_source; }
|
||||
const Model& source() const { return *m_source; }
|
||||
|
||||
Reference in New Issue
Block a user