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

SystemMonitor: Enable sorting by column in the process memory map view

This commit is contained in:
Andreas Kling 2019-12-02 17:43:34 +01:00
parent 7970b594d5
commit b9f58a0e2e
2 changed files with 8 additions and 3 deletions

View file

@ -3,6 +3,7 @@
#include <LibGUI/GWidget.h>
class CTimer;
class GJsonArrayModel;
class GTableView;
class ProcessMemoryMapWidget final : public GWidget {
@ -16,6 +17,7 @@ public:
private:
explicit ProcessMemoryMapWidget(GWidget* parent);
RefPtr<GTableView> m_table_view;
RefPtr<GJsonArrayModel> m_json_model;
pid_t m_pid { -1 };
RefPtr<CTimer> m_timer;
};