summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-04-22 09:23:50 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-22 09:35:15 +0200
commita5625686cb54defba0e474942648cb41269763ab (patch)
tree7f11e7c627e0f751fd5c09e14a2351c55244f105 /Userland
parentde7062af9cf628964ec51424cbf58e18266a49bb (diff)
downloadserenity-a5625686cb54defba0e474942648cb41269763ab.zip
WidgetGallery: Fix bogus return type from FileIconsModel::create()
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Demos/WidgetGallery/GalleryModels.h2
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 {