mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 21:57:35 +00:00
LibGfx: Remove unused parameter from cmyk_frame()
This commit is contained in:
parent
2c40886851
commit
c6eac16d00
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…
Add table
Add a link
Reference in a new issue