summaryrefslogtreecommitdiff
path: root/Userland/Applications/3DFileViewer
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/3DFileViewer
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/3DFileViewer')
-rw-r--r--Userland/Applications/3DFileViewer/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/3DFileViewer/main.cpp b/Userland/Applications/3DFileViewer/main.cpp
index eafe362978..d9bdb12e24 100644
--- a/Userland/Applications/3DFileViewer/main.cpp
+++ b/Userland/Applications/3DFileViewer/main.cpp
@@ -284,7 +284,7 @@ bool GLContextWidget::load_file(Core::File& file, String const& filename)
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
- auto app = GUI::Application::construct(arguments.argc, arguments.argv);
+ auto app = GUI::Application::construct(arguments);
TRY(System::pledge("stdio thread recvfd sendfd rpath unix", nullptr));