summaryrefslogtreecommitdiff
path: root/Applications/SystemMonitor/MemoryStatsWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'Applications/SystemMonitor/MemoryStatsWidget.h')
-rw-r--r--Applications/SystemMonitor/MemoryStatsWidget.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Applications/SystemMonitor/MemoryStatsWidget.h b/Applications/SystemMonitor/MemoryStatsWidget.h
index f2ce831188..019cd61e27 100644
--- a/Applications/SystemMonitor/MemoryStatsWidget.h
+++ b/Applications/SystemMonitor/MemoryStatsWidget.h
@@ -1,6 +1,5 @@
#pragma once
-#include <LibCore/CFile.h>
#include <LibGUI/GWidget.h>
class GLabel;
@@ -18,12 +17,9 @@ public:
private:
MemoryStatsWidget(GraphWidget& graph, GWidget* parent);
- virtual void timer_event(CTimerEvent&) override;
-
GraphWidget& m_graph;
RefPtr<GLabel> m_user_physical_pages_label;
RefPtr<GLabel> m_supervisor_physical_pages_label;
RefPtr<GLabel> m_kmalloc_label;
RefPtr<GLabel> m_kmalloc_count_label;
- RefPtr<CFile> m_proc_memstat;
};