diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-23 12:07:13 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-23 12:27:53 +0100 |
commit | c5d913970ab122cdeaf23aea24e65efa6b425ab0 (patch) | |
tree | 07ef4cb2d039521ec7b1931c707b5196b7ea1628 /Applications/SystemMonitor/ProcessMemoryMapWidget.h | |
parent | 4ce28c32d1813b043758c0d15d5efc17452c2b77 (diff) | |
download | serenity-c5d913970ab122cdeaf23aea24e65efa6b425ab0.zip |
LibGUI: Remove parent parameter to GUI::Widget constructor
Diffstat (limited to 'Applications/SystemMonitor/ProcessMemoryMapWidget.h')
-rw-r--r-- | Applications/SystemMonitor/ProcessMemoryMapWidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/SystemMonitor/ProcessMemoryMapWidget.h b/Applications/SystemMonitor/ProcessMemoryMapWidget.h index d8094f69f7..71a554fe51 100644 --- a/Applications/SystemMonitor/ProcessMemoryMapWidget.h +++ b/Applications/SystemMonitor/ProcessMemoryMapWidget.h @@ -38,7 +38,7 @@ public: void refresh(); private: - explicit ProcessMemoryMapWidget(GUI::Widget* parent); + ProcessMemoryMapWidget(); RefPtr<GUI::TableView> m_table_view; RefPtr<GUI::JsonArrayModel> m_json_model; pid_t m_pid { -1 }; |