diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-05-09 04:56:52 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-09 04:56:52 +0200 |
commit | fa232ac1801e398bdd3d254e62c26a783de6a225 (patch) | |
tree | f3821d9125a3c86ec43f7c4040c9ce62bb20285c /LibGUI/GFileSystemModel.h | |
parent | bffaa5ece6cb2cb4a82180efadb551516f5519da (diff) | |
download | serenity-fa232ac1801e398bdd3d254e62c26a783de6a225.zip |
LibGUI: Remove GModel activations to GAbstractView.
Now you can hook activation via GAbstractView::on_activation.
The design still isn't quite right, we should eventually move the selection
away from the model somehow.
Diffstat (limited to 'LibGUI/GFileSystemModel.h')
-rw-r--r-- | LibGUI/GFileSystemModel.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/LibGUI/GFileSystemModel.h b/LibGUI/GFileSystemModel.h index f553bfbcad..7eb7f5ef0c 100644 --- a/LibGUI/GFileSystemModel.h +++ b/LibGUI/GFileSystemModel.h @@ -23,7 +23,6 @@ public: virtual void update() override; virtual GModelIndex parent_index(const GModelIndex&) const override; virtual GModelIndex index(int row, int column = 0, const GModelIndex& parent = GModelIndex()) const override; - virtual void activate(const GModelIndex&) override; private: GFileSystemModel(const String& root_path, Mode); |