1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:47:35 +00:00

PixelPaint: Remove unused Image::write_to_file() method

This seems to be a remnant from before FileSystemAccessClient was used.
This commit is contained in:
Sam Atkins 2022-04-06 17:36:06 +01:00 committed by Tim Flynn
parent a203e714ec
commit aee52a458b
2 changed files with 0 additions and 15 deletions

View file

@ -73,7 +73,6 @@ public:
void paint_into(GUI::Painter&, Gfx::IntRect const& dest_rect) const;
void serialize_as_json(JsonObjectSerializer<StringBuilder>& json) const;
ErrorOr<void> write_to_file(String const& file_path) const;
ErrorOr<void> export_bmp_to_file(Core::File&, bool preserve_alpha_channel);
ErrorOr<void> export_png_to_file(Core::File&, bool preserve_alpha_channel);
ErrorOr<void> export_qoi_to_file(Core::File&) const;