diff options
Diffstat (limited to 'Userland/Libraries/LibGfx/ICCProfile.h')
-rw-r--r-- | Userland/Libraries/LibGfx/ICCProfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/ICCProfile.h b/Userland/Libraries/LibGfx/ICCProfile.h index f5cd556816..2d85bd4dcd 100644 --- a/Userland/Libraries/LibGfx/ICCProfile.h +++ b/Userland/Libraries/LibGfx/ICCProfile.h @@ -124,7 +124,7 @@ struct XYZ { class Profile : public RefCounted<Profile> { public: - static ErrorOr<NonnullRefPtr<Profile>> try_load_from_externally_owned_memory(ReadonlyBytes bytes); + static ErrorOr<NonnullRefPtr<Profile>> try_load_from_externally_owned_memory(ReadonlyBytes); Version version() const { return m_version; } DeviceClass device_class() const { return m_device_class; } |