WidgetGallery: Fix bogus return type from FileIconsModel::create()
This commit is contained in:
parent
de7062af9c
commit
a5625686cb
Notes:
sideshowbarker
2024-07-18 19:15:10 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/a5625686cb5
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue