mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:17:35 +00:00
PixelPaint: Remove try_
prefix from fallible ProjectLoader methods
This commit is contained in:
parent
86f28ceace
commit
65fa7db2b5
3 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ public:
|
|||
ProjectLoader() = default;
|
||||
~ProjectLoader() = default;
|
||||
|
||||
ErrorOr<void> try_load_from_file(NonnullOwnPtr<Core::Stream::File>);
|
||||
ErrorOr<void> load_from_file(NonnullOwnPtr<Core::Stream::File>);
|
||||
|
||||
bool is_raw_image() const { return m_is_raw_image; }
|
||||
bool has_image() const { return !m_image.is_null(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue