diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-02 15:07:41 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-02 15:15:33 +0100 |
commit | c5bd9d4ed1d80ac91d46146565127b0c185f1b43 (patch) | |
tree | b4ee9ba5999778450f8eb4006df89110617b4a10 /Applications/SystemMonitor/ProcessTableView.h | |
parent | 2d39da5405a4527e91e853ddb1e56a539c96c6c1 (diff) | |
download | serenity-c5bd9d4ed1d80ac91d46146565127b0c185f1b43.zip |
LibGUI: Put all classes in the GUI namespace and remove the leading G
This took me a moment. Welcome to the new world of GUI::Widget! :^)
Diffstat (limited to 'Applications/SystemMonitor/ProcessTableView.h')
-rw-r--r-- | Applications/SystemMonitor/ProcessTableView.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/SystemMonitor/ProcessTableView.h b/Applications/SystemMonitor/ProcessTableView.h index 9020ec5349..3cc00d3b62 100644 --- a/Applications/SystemMonitor/ProcessTableView.h +++ b/Applications/SystemMonitor/ProcessTableView.h @@ -33,7 +33,7 @@ class GraphWidget; class ProcessModel; -class ProcessTableView final : public GTableView { +class ProcessTableView final : public GUI::TableView { C_OBJECT(ProcessTableView) public: virtual ~ProcessTableView() override; @@ -45,5 +45,5 @@ public: Function<void(pid_t)> on_process_selected; private: - explicit ProcessTableView(GWidget* parent = nullptr); + explicit ProcessTableView(GUI::Widget* parent = nullptr); }; |