diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-22 09:23:50 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-22 09:35:15 +0200 |
commit | a5625686cb54defba0e474942648cb41269763ab (patch) | |
tree | 7f11e7c627e0f751fd5c09e14a2351c55244f105 /Userland | |
parent | de7062af9cf628964ec51424cbf58e18266a49bb (diff) | |
download | serenity-a5625686cb54defba0e474942648cb41269763ab.zip |
WidgetGallery: Fix bogus return type from FileIconsModel::create()
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Demos/WidgetGallery/GalleryModels.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Demos/WidgetGallery/GalleryModels.h b/Userland/Demos/WidgetGallery/GalleryModels.h index d25c3dea00..5e18e5dd67 100644 --- a/Userland/Demos/WidgetGallery/GalleryModels.h +++ b/Userland/Demos/WidgetGallery/GalleryModels.h @@ -106,7 +106,7 @@ private: class FileIconsModel final : public GUI::Model { public: - static NonnullRefPtr<MouseCursorModel> create() { return adopt(*new FileIconsModel); } + static NonnullRefPtr<FileIconsModel> create() { return adopt(*new FileIconsModel); } virtual ~FileIconsModel() override { } enum Column { |