diff options
author | Linus Groh <mail@linusgroh.de> | 2023-01-28 20:12:17 +0000 |
---|---|---|
committer | Jelle Raaijmakers <jelle@gmta.nl> | 2023-01-28 22:41:36 +0100 |
commit | 86f28ceace9f75d3444927bc51203130290627c0 (patch) | |
tree | d7f3d6869f9b617cb4f767a15870826bb50512c7 /Userland/Applications/PixelPaint/IconBag.h | |
parent | 8a884b258143fd55b77b6a4ef0922a24d956ab19 (diff) | |
download | serenity-86f28ceace9f75d3444927bc51203130290627c0.zip |
PixelPaint: Remove `try_` prefix from fallible IconBag methods
Diffstat (limited to 'Userland/Applications/PixelPaint/IconBag.h')
-rw-r--r-- | Userland/Applications/PixelPaint/IconBag.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/PixelPaint/IconBag.h b/Userland/Applications/PixelPaint/IconBag.h index 3fe1ae378a..cbdd3fc4d0 100644 --- a/Userland/Applications/PixelPaint/IconBag.h +++ b/Userland/Applications/PixelPaint/IconBag.h @@ -11,7 +11,7 @@ namespace PixelPaint { struct IconBag final { - static ErrorOr<IconBag> try_create(); + static ErrorOr<IconBag> create(); RefPtr<Gfx::Bitmap> filetype_pixelpaint { nullptr }; RefPtr<Gfx::Bitmap> new_clipboard { nullptr }; |