summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2023-05-01 08:26:56 -0400
committerSam Atkins <atkinssj@gmail.com>2023-05-02 17:15:48 +0100
commit82bd7c33d1a9fe2bb0dfefddf0eca5423390fe40 (patch)
tree22c8631effd8eec11163cb61f6a9a6297966f17f /Userland
parent103f818afc1f3e07d16bc187facb51a15c70d28b (diff)
downloadserenity-82bd7c33d1a9fe2bb0dfefddf0eca5423390fe40.zip
ICC: Make a "not yet implemented" string more precise
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibGfx/ICC/Profile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/ICC/Profile.cpp b/Userland/Libraries/LibGfx/ICC/Profile.cpp
index 44fdb31c69..482264a7fb 100644
--- a/Userland/Libraries/LibGfx/ICC/Profile.cpp
+++ b/Userland/Libraries/LibGfx/ICC/Profile.cpp
@@ -1401,7 +1401,7 @@ ErrorOr<FloatVector3> Profile::to_pcs(ReadonlyBytes color) const
// rendering intent if present, when the tag in a) is not used."
if (has_tag(forward_transform_tag_for_rendering_intent(rendering_intent()))) {
// FIXME
- return Error::from_string_literal("ICC::Profile::to_pcs: AToB0Tag handling not yet implemented");
+ return Error::from_string_literal("ICC::Profile::to_pcs: AToB*Tag handling not yet implemented");
}
// "c) Use the BToA0Tag or AToB0Tag if present, when the tags in a) and b) are not used."