1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:37:34 +00:00

LibGfx/TIFF: Rename Metadata => ExifMetadata

I originally thought that this would be our global `Metadata` class, but
that won't happen so let's give it a less general name.
This commit is contained in:
Lucas CHOLLET 2023-12-28 17:47:58 -05:00 committed by Andrew Kaster
parent b242fe20cc
commit f47666a93b
2 changed files with 7 additions and 7 deletions

View file

@ -82,7 +82,7 @@ public:
return ExifOrientedBitmap::oriented_size({ *m_metadata.image_width(), *m_metadata.image_height() }, *m_metadata.orientation());
}
Metadata const& metadata() const
ExifMetadata const& metadata() const
{
return m_metadata;
}
@ -518,7 +518,7 @@ private:
ByteOrder m_byte_order {};
Optional<u32> m_next_ifd {};
Metadata m_metadata {};
ExifMetadata m_metadata {};
};
}