diff options
Diffstat (limited to 'Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.h')
-rw-r--r-- | Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.h b/Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.h index 7617af2568..ebb2a76f71 100644 --- a/Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.h +++ b/Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.h @@ -12,15 +12,17 @@ namespace SystemMonitor { class ProcessUnveiledPathsWidget final : public GUI::Widget { - C_OBJECT(ProcessUnveiledPathsWidget); + C_OBJECT_ABSTRACT(ProcessUnveiledPathsWidget); public: virtual ~ProcessUnveiledPathsWidget() override = default; + static ErrorOr<NonnullRefPtr<ProcessUnveiledPathsWidget>> try_create(); + void set_pid(pid_t); private: - ProcessUnveiledPathsWidget(); + ProcessUnveiledPathsWidget() = default; RefPtr<GUI::TableView> m_table_view; RefPtr<GUI::JsonArrayModel> m_model; |