diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-04-16 17:17:39 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-18 12:57:34 +0200 |
commit | 73552c18568b8f7e08cd8c474689f922d9bfe659 (patch) | |
tree | 088559fc835dfefd233bdb28ca98404eee411469 /Userland/DevTools/HackStudio | |
parent | cd7037afd5b97260b69dd3c5cfec9b191b325fb5 (diff) | |
download | serenity-73552c18568b8f7e08cd8c474689f922d9bfe659.zip |
Userland: Always construct Application with try_create()
Diffstat (limited to 'Userland/DevTools/HackStudio')
-rw-r--r-- | Userland/DevTools/HackStudio/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/HackStudio/main.cpp b/Userland/DevTools/HackStudio/main.cpp index 9473fcdc4d..94fb9d2880 100644 --- a/Userland/DevTools/HackStudio/main.cpp +++ b/Userland/DevTools/HackStudio/main.cpp @@ -38,7 +38,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) { TRY(Core::System::pledge("stdio recvfd sendfd tty rpath cpath wpath proc exec unix fattr thread ptrace")); - auto app = GUI::Application::construct(arguments.argc, arguments.argv); + auto app = TRY(GUI::Application::try_create(arguments)); Config::pledge_domains({ "HackStudio", "Terminal" }); auto window = GUI::Window::construct(); |