summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser
diff options
context:
space:
mode:
authorMustafa Quraish <mustafaq9@gmail.com>2021-11-22 19:11:16 -0500
committerBrian Gianforcaro <b.gianfo@gmail.com>2021-11-22 21:13:42 -0800
commit4d302e0e88bd1801e581debcf2fa87ce322e5f3b (patch)
tree58a262d053e43df197dfd25692e46042649fae8b /Userland/Applications/Browser
parent2fbcab46bfef7a020fbded228e78a627fe08b74c (diff)
downloadserenity-4d302e0e88bd1801e581debcf2fa87ce322e5f3b.zip
Everywhere: Use Application::construct() with Main::Arguments directly
Use the updated API everywhere we are currently manually passing in `arguments.argc` and `arguments.argv`.
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r--Userland/Applications/Browser/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Browser/main.cpp b/Userland/Applications/Browser/main.cpp
index ec10151c6c..9677c2f483 100644
--- a/Userland/Applications/Browser/main.cpp
+++ b/Userland/Applications/Browser/main.cpp
@@ -47,7 +47,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
args_parser.add_positional_argument(specified_url, "URL to open", "url", Core::ArgsParser::Required::No);
args_parser.parse(arguments);
- auto app = GUI::Application::construct(arguments.argc, arguments.argv);
+ auto app = GUI::Application::construct(arguments);
Config::pledge_domains("Browser");