diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-23 10:57:42 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-23 11:10:52 +0100 |
commit | 3d20da9ee451460b6e233f5efdf5a13e11525f97 (patch) | |
tree | 524b72d0874304c68036dbbc0514b632a4a08c59 /Applications/SystemMonitor/MemoryStatsWidget.h | |
parent | 7ec758773cdd85755d91f52614f361e7e750c7e9 (diff) | |
download | serenity-3d20da9ee451460b6e233f5efdf5a13e11525f97.zip |
Userspace: Use Core::Object::add() when building interfaces
Diffstat (limited to 'Applications/SystemMonitor/MemoryStatsWidget.h')
-rw-r--r-- | Applications/SystemMonitor/MemoryStatsWidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/SystemMonitor/MemoryStatsWidget.h b/Applications/SystemMonitor/MemoryStatsWidget.h index 5ad2c984c1..f2d8c2c36a 100644 --- a/Applications/SystemMonitor/MemoryStatsWidget.h +++ b/Applications/SystemMonitor/MemoryStatsWidget.h @@ -40,7 +40,7 @@ public: void refresh(); private: - MemoryStatsWidget(GraphWidget& graph, GUI::Widget* parent); + MemoryStatsWidget(GraphWidget& graph); GraphWidget& m_graph; RefPtr<GUI::Label> m_user_physical_pages_label; |