From 5c5a24c6b7ea9d91e8ab27dff4c992fbeffc6349 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Mon, 8 Jan 2024 18:17:51 -0500 Subject: [PATCH] LibGfx/ICC: Move some Profile member vars up a bit ...so that they're not below a FIXME that doesn't apply to them. No behavior change. --- Userland/Libraries/LibGfx/ICC/Profile.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }; }