mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-19 08:51:57 +00:00
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: a5625686cb
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
Add a link
Reference in a new issue