diff --git a/Userland/Libraries/LibGfx/ICC/Profile.h b/Userland/Libraries/LibGfx/ICC/Profile.h index ed3ddc8059..6b7309aab2 100644 --- a/Userland/Libraries/LibGfx/ICC/Profile.h +++ b/Userland/Libraries/LibGfx/ICC/Profile.h @@ -241,12 +241,12 @@ private: ErrorOr check_required_tags(); ErrorOr check_tag_types(); + ProfileHeader m_header; + OrderedHashMap> m_tag_table; + // FIXME: The color conversion stuff should be in some other class. ErrorOr to_pcs_a_to_b(TagData const& tag_data, ReadonlyBytes) const; ErrorOr from_pcs_b_to_a(TagData const& tag_data, FloatVector3 const&, Bytes) const; - - ProfileHeader m_header; - OrderedHashMap> m_tag_table; }; }