summaryrefslogtreecommitdiff
path: root/Userland/Applications/Help/MainWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Applications/Help/MainWidget.h')
-rw-r--r--Userland/Applications/Help/MainWidget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Help/MainWidget.h b/Userland/Applications/Help/MainWidget.h
index 18f3aa91be..8f1012a84b 100644
--- a/Userland/Applications/Help/MainWidget.h
+++ b/Userland/Applications/Help/MainWidget.h
@@ -20,13 +20,13 @@ public:
virtual ~MainWidget() override = default;
ErrorOr<void> initialize_fallibles(GUI::Window&);
- void set_start_page(StringView page, u32 section);
+ ErrorOr<void> set_start_page(StringView page, u32 section);
private:
MainWidget();
void open_url(URL const&);
- void open_page(DeprecatedString const& path);
+ void open_page(Optional<String> const& path);
void open_external(URL const&);
History m_history;