mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
LibGUI: Remove `AbstractView::did_update_model()'
...and use `ModelClient::model_did_update()' instead. This makes AbstractView a ModelClient (which it always was anyway).
This commit is contained in:
committed by
Andreas Kling
parent
868c315e51
commit
71de8b7480
@@ -75,9 +75,9 @@ void ListView::resize_event(ResizeEvent& event)
|
||||
AbstractView::resize_event(event);
|
||||
}
|
||||
|
||||
void ListView::did_update_model(unsigned flags)
|
||||
void ListView::model_did_update(unsigned flags)
|
||||
{
|
||||
AbstractView::did_update_model(flags);
|
||||
AbstractView::model_did_update(flags);
|
||||
update_content_size();
|
||||
update();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user