summaryrefslogtreecommitdiff
path: root/Userland/Applets/ResourceGraph
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/Applets/ResourceGraph
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/Applets/ResourceGraph')
-rw-r--r--Userland/Applets/ResourceGraph/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applets/ResourceGraph/main.cpp b/Userland/Applets/ResourceGraph/main.cpp
index 48008c1328..402ca85f1f 100644
--- a/Userland/Applets/ResourceGraph/main.cpp
+++ b/Userland/Applets/ResourceGraph/main.cpp
@@ -187,7 +187,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
{
TRY(System::pledge("stdio recvfd sendfd proc exec rpath unix", nullptr));
- auto app = GUI::Application::construct(arguments.argc, arguments.argv);
+ auto app = GUI::Application::construct(arguments);
TRY(System::pledge("stdio recvfd sendfd proc exec rpath", nullptr));