1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:47:35 +00:00

WidgetGallery: Fix bogus return type from FileIconsModel::create()

This commit is contained in:
Andreas Kling 2021-04-22 09:23:50 +02:00
parent de7062af9c
commit a5625686cb

View file

@ -106,7 +106,7 @@ private:
class FileIconsModel final : public GUI::Model { class FileIconsModel final : public GUI::Model {
public: public:
static NonnullRefPtr<MouseCursorModel> create() { return adopt(*new FileIconsModel); } static NonnullRefPtr<FileIconsModel> create() { return adopt(*new FileIconsModel); }
virtual ~FileIconsModel() override { } virtual ~FileIconsModel() override { }
enum Column { enum Column {