diff options
Diffstat (limited to 'Userland/Applications/PixelPaint/ProjectLoader.h')
-rw-r--r-- | Userland/Applications/PixelPaint/ProjectLoader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/PixelPaint/ProjectLoader.h b/Userland/Applications/PixelPaint/ProjectLoader.h index 3f56340ad2..0fc7a059d8 100644 --- a/Userland/Applications/PixelPaint/ProjectLoader.h +++ b/Userland/Applications/PixelPaint/ProjectLoader.h @@ -18,7 +18,7 @@ public: ProjectLoader() = default; ~ProjectLoader() = default; - ErrorOr<void> try_load_from_fd_and_close(int fd, StringView path); + ErrorOr<void> try_load_from_file(Core::File&); bool is_raw_image() const { return m_is_raw_image; } bool has_image() const { return !m_image.is_null(); } |