diff options
Diffstat (limited to 'Userland/Libraries/LibDesktop')
-rw-r--r-- | Userland/Libraries/LibDesktop/Launcher.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Libraries/LibDesktop/Launcher.cpp b/Userland/Libraries/LibDesktop/Launcher.cpp index fc32bb1951..4cfd16beb4 100644 --- a/Userland/Libraries/LibDesktop/Launcher.cpp +++ b/Userland/Libraries/LibDesktop/Launcher.cpp @@ -59,7 +59,7 @@ ErrorOr<void> Launcher::add_allowed_url(URL const& url) { auto response_or_error = connection().try_add_allowed_url(url); if (response_or_error.is_error()) - return Error::from_string_literal("Launcher::add_allowed_url: Failed"sv); + return Error::from_string_literal("Launcher::add_allowed_url: Failed"); return {}; } @@ -67,7 +67,7 @@ ErrorOr<void> Launcher::add_allowed_handler_with_any_url(String const& handler) { auto response_or_error = connection().try_add_allowed_handler_with_any_url(handler); if (response_or_error.is_error()) - return Error::from_string_literal("Launcher::add_allowed_handler_with_any_url: Failed"sv); + return Error::from_string_literal("Launcher::add_allowed_handler_with_any_url: Failed"); return {}; } @@ -75,7 +75,7 @@ ErrorOr<void> Launcher::add_allowed_handler_with_only_specific_urls(String const { auto response_or_error = connection().try_add_allowed_handler_with_only_specific_urls(handler, urls); if (response_or_error.is_error()) - return Error::from_string_literal("Launcher::add_allowed_handler_with_only_specific_urls: Failed"sv); + return Error::from_string_literal("Launcher::add_allowed_handler_with_only_specific_urls: Failed"); return {}; } @@ -83,7 +83,7 @@ ErrorOr<void> Launcher::seal_allowlist() { auto response_or_error = connection().try_seal_allowlist(); if (response_or_error.is_error()) - return Error::from_string_literal("Launcher::seal_allowlist: Failed"sv); + return Error::from_string_literal("Launcher::seal_allowlist: Failed"); return {}; } |