mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:48:11 +00:00
LibGUI: Convert GLabel to ObjectPtr
This commit is contained in:
parent
6b347747f2
commit
c7437f9caa
22 changed files with 47 additions and 45 deletions
|
@ -17,9 +17,9 @@ private:
|
|||
virtual void timer_event(CTimerEvent&) override;
|
||||
|
||||
GraphWidget& m_graph;
|
||||
GLabel* m_user_physical_pages_label { nullptr };
|
||||
GLabel* m_supervisor_physical_pages_label { nullptr };
|
||||
GLabel* m_kmalloc_label { nullptr };
|
||||
GLabel* m_kmalloc_count_label { nullptr };
|
||||
ObjectPtr<GLabel> m_user_physical_pages_label;
|
||||
ObjectPtr<GLabel> m_supervisor_physical_pages_label;
|
||||
ObjectPtr<GLabel> m_kmalloc_label;
|
||||
ObjectPtr<GLabel> m_kmalloc_count_label;
|
||||
CFile m_proc_memstat;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue