From 21335ad72023a696e1e62aa66f3502501f7fd358 Mon Sep 17 00:00:00 2001 From: Astraeus- Date: Sat, 18 Dec 2021 11:46:02 +0100 Subject: [PATCH] Spider: Convert to try_create_default_icon --- Userland/Games/Spider/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Games/Spider/main.cpp b/Userland/Games/Spider/main.cpp index 94d9cf63001..06df8e4b71a 100644 --- a/Userland/Games/Spider/main.cpp +++ b/Userland/Games/Spider/main.cpp @@ -42,7 +42,7 @@ ErrorOr serenity_main(Main::Arguments arguments) TRY(Core::System::pledge("stdio recvfd sendfd rpath unix")); auto app = TRY(GUI::Application::try_create(arguments)); - auto app_icon = GUI::Icon::default_icon("app-spider"); + auto app_icon = TRY(GUI::Icon::try_create_default_icon("app-spider")); Config::pledge_domains("Spider");