Browse Source

ICC: Make a "not yet implemented" string more precise

Nico Weber 2 years ago
parent
commit
82bd7c33d1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Libraries/LibGfx/ICC/Profile.cpp

+ 1 - 1
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."
         //     rendering intent if present, when the tag in a) is not used."
         if (has_tag(forward_transform_tag_for_rendering_intent(rendering_intent()))) {
         if (has_tag(forward_transform_tag_for_rendering_intent(rendering_intent()))) {
             // FIXME
             // 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."
         // "c) Use the BToA0Tag or AToB0Tag if present, when the tags in a) and b) are not used."