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:
parent
de7062af9c
commit
a5625686cb
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue