From a5625686cb54defba0e474942648cb41269763ab Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 22 Apr 2021 09:23:50 +0200 Subject: [PATCH] WidgetGallery: Fix bogus return type from FileIconsModel::create() --- Userland/Demos/WidgetGallery/GalleryModels.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Demos/WidgetGallery/GalleryModels.h b/Userland/Demos/WidgetGallery/GalleryModels.h index d25c3dea006..5e18e5dd679 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 create() { return adopt(*new FileIconsModel); } + static NonnullRefPtr create() { return adopt(*new FileIconsModel); } virtual ~FileIconsModel() override { } enum Column {