diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-10 02:02:37 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-10 02:03:36 +0100 |
commit | 0b32ab12f1329caebf3ae2e29178fa9fd683510a (patch) | |
tree | 058f888e8d72705b42f1b8fc0dfac77ced2a85b8 /Applications/ProcessManager/ProcessTableView.h | |
parent | 2336d43abce16c6eedcaae508fbf33a946f4e3fa (diff) | |
download | serenity-0b32ab12f1329caebf3ae2e29178fa9fd683510a.zip |
ProcessManager: Make the toolbar actions work again.
We can't grab at the ProcessTableModel directly anymore since we have a
sorting proxy model in the middle now.
Diffstat (limited to 'Applications/ProcessManager/ProcessTableView.h')
-rw-r--r-- | Applications/ProcessManager/ProcessTableView.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Applications/ProcessManager/ProcessTableView.h b/Applications/ProcessManager/ProcessTableView.h index 8c5f37b552..3294ea5d41 100644 --- a/Applications/ProcessManager/ProcessTableView.h +++ b/Applications/ProcessManager/ProcessTableView.h @@ -20,10 +20,5 @@ protected: private: virtual void timer_event(GTimerEvent&) override; - - ProcessTableModel& model() { return *m_model; } - const ProcessTableModel& model() const { return *m_model; } - - ProcessTableModel* m_model { nullptr }; }; |