1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:18:13 +00:00

SystemMonitor: Wrap adapters and sockets model into a SortingProxyModel

This commit is contained in:
Tibor Nagy 2020-09-22 00:21:28 +02:00 committed by Andreas Kling
parent 2c1b244889
commit e596b1da88
2 changed files with 7 additions and 2 deletions

View file

@ -40,5 +40,7 @@ private:
RefPtr<GUI::TableView> m_adapter_table_view;
RefPtr<GUI::TableView> m_socket_table_view;
RefPtr<GUI::JsonArrayModel> m_adapter_model;
RefPtr<GUI::JsonArrayModel> m_socket_model;
RefPtr<Core::Timer> m_update_timer;
};