1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +00:00

LibGfx/ICO: Remove unused parameter

This commit is contained in:
Lucas CHOLLET 2023-07-19 00:28:17 -04:00 committed by Andreas Kling
parent aef188207c
commit 15d151ee66
2 changed files with 4 additions and 6 deletions

View file

@ -25,7 +25,7 @@ public:
private:
ICOImageDecoderPlugin(u8 const*, size_t);
static ErrorOr<void> load_ico_bitmap(ICOLoadingContext& context, Optional<size_t> index);
static ErrorOr<void> load_ico_bitmap(ICOLoadingContext& context);
OwnPtr<ICOLoadingContext> m_context;
};