summaryrefslogtreecommitdiff
path: root/Userland/Utilities/notify.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-07-21 18:02:15 +0200
committerAndreas Kling <kling@serenityos.org>2021-07-21 18:02:15 +0200
commitc7d891765cc87ec04f8d332b93fc7c3f82521d7f (patch)
tree9d414d3ad62e0193b1b6fb0d12079e11e96e69b1 /Userland/Utilities/notify.cpp
parentf0409081f562b635de3a23d7babbc7348cbb970c (diff)
downloadserenity-c7d891765cc87ec04f8d332b93fc7c3f82521d7f.zip
LibGfx: Use "try_" prefix for static factory functions
Also mark them as [[nodiscard]].
Diffstat (limited to 'Userland/Utilities/notify.cpp')
-rw-r--r--Userland/Utilities/notify.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/notify.cpp b/Userland/Utilities/notify.cpp
index 5be167dd0b..affa66c389 100644
--- a/Userland/Utilities/notify.cpp
+++ b/Userland/Utilities/notify.cpp
@@ -26,7 +26,7 @@ int main(int argc, char** argv)
auto notification = GUI::Notification::construct();
notification->set_text(message);
notification->set_title(title);
- notification->set_icon(Gfx::Bitmap::load_from_file(icon_path));
+ notification->set_icon(Gfx::Bitmap::try_load_from_file(icon_path));
notification->show();
return 0;