mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:48:10 +00:00
Utilities/notify: Propagate errors in Gfx::Bitmap loading
This commit is contained in:
parent
9d6ecdca7b
commit
d9b3278074
1 changed files with 8 additions and 2 deletions
|
@ -25,8 +25,14 @@ int main(int argc, char** argv)
|
||||||
auto notification = GUI::Notification::construct();
|
auto notification = GUI::Notification::construct();
|
||||||
notification->set_text(message);
|
notification->set_text(message);
|
||||||
notification->set_title(title);
|
notification->set_title(title);
|
||||||
if (icon_path)
|
if (icon_path) {
|
||||||
notification->set_icon(Gfx::Bitmap::try_load_from_file(icon_path).release_value_but_fixme_should_propagate_errors());
|
ErrorOr<NonnullRefPtr<Gfx::Bitmap>> icon_or_error = Gfx::Bitmap::try_load_from_file(icon_path);
|
||||||
|
if (icon_or_error.is_error()) {
|
||||||
|
warnln("Failed to load icon: {}", icon_or_error.error());
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
notification->set_icon(icon_or_error.release_value());
|
||||||
|
}
|
||||||
notification->show();
|
notification->show();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue