1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 23:15:08 +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:
AnotherTest 2020-11-26 11:10:14 +03:30 committed by Andreas Kling
parent 868c315e51
commit 71de8b7480
13 changed files with 26 additions and 23 deletions

View file

@ -399,10 +399,10 @@ void TreeView::scroll_into_view(const ModelIndex& a_index, bool scroll_horizonta
ScrollableWidget::scroll_into_view(found_rect, scroll_horizontally, scroll_vertically);
}
void TreeView::did_update_model(unsigned flags)
void TreeView::model_did_update(unsigned flags)
{
m_view_metadata.clear();
AbstractTableView::did_update_model(flags);
AbstractTableView::model_did_update(flags);
}
void TreeView::did_update_selection()