diff options
Diffstat (limited to 'Userland/Applications/SpaceAnalyzer')
-rw-r--r-- | Userland/Applications/SpaceAnalyzer/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/SpaceAnalyzer/main.cpp b/Userland/Applications/SpaceAnalyzer/main.cpp index 560c7d9e4e..04864c2265 100644 --- a/Userland/Applications/SpaceAnalyzer/main.cpp +++ b/Userland/Applications/SpaceAnalyzer/main.cpp @@ -302,7 +302,7 @@ static String get_absolute_path_to_selected_node(SpaceAnalyzer::TreeMapWidget co ErrorOr<int> serenity_main(Main::Arguments arguments) { - auto app = GUI::Application::construct(arguments); + auto app = TRY(GUI::Application::try_create(arguments)); RefPtr<Tree> tree = adopt_ref(*new Tree("")); |