mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
LibGfx: Remove unused parameter from cmyk_frame()
This commit is contained in:
parent
2c40886851
commit
c6eac16d00
Notes:
sideshowbarker
2024-07-17 02:56:25 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/c6eac16d00 Pull-request: https://github.com/SerenityOS/serenity/pull/22922 Reviewed-by: https://github.com/LucasChollet ✅
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ public:
|
|||
NaturalFrameFormat natural_frame_format() { return m_plugin->natural_frame_format(); }
|
||||
|
||||
// Call only if natural_frame_format() == NaturalFrameFormat::CMYK.
|
||||
ErrorOr<NonnullRefPtr<CMYKBitmap>> cmyk_frame(size_t) { return m_plugin->cmyk_frame(); }
|
||||
ErrorOr<NonnullRefPtr<CMYKBitmap>> cmyk_frame() { return m_plugin->cmyk_frame(); }
|
||||
|
||||
// Call only if natural_frame_format() == NaturalFrameFormat::Vector.
|
||||
ErrorOr<VectorImageFrameDescriptor> vector_frame(size_t index) { return m_plugin->vector_frame(index); }
|
||||
|
|
Loading…
Reference in a new issue