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
commit e596b1da88
Notes: sideshowbarker 2024-07-19 02:16:56 +09:00
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;
};