diff options
Diffstat (limited to 'Userland/Applications/Spreadsheet/HelpWindow.cpp')
-rw-r--r-- | Userland/Applications/Spreadsheet/HelpWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Spreadsheet/HelpWindow.cpp b/Userland/Applications/Spreadsheet/HelpWindow.cpp index a1f49fd739..0ee42e3709 100644 --- a/Userland/Applications/Spreadsheet/HelpWindow.cpp +++ b/Userland/Applications/Spreadsheet/HelpWindow.cpp @@ -21,7 +21,7 @@ namespace Spreadsheet { class HelpListModel final : public GUI::Model { public: - static NonnullRefPtr<HelpListModel> create() { return adopt(*new HelpListModel); } + static NonnullRefPtr<HelpListModel> create() { return adopt_ref(*new HelpListModel); } virtual ~HelpListModel() override { } |