1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:27:35 +00:00

LibPDF: Make DeviceCMYKColorSpace::the() fallible

No behavior change.
This commit is contained in:
Nico Weber 2024-01-30 20:59:50 -05:00 committed by Andrew Kaster
parent 79b73b7fbb
commit f840fb6b4e
3 changed files with 5 additions and 5 deletions

View file

@ -53,7 +53,7 @@ PDFErrorOr<NonnullRefPtr<ColorSpace>> ColorSpace::create(DeprecatedFlyString con
if (name == CommonNames::DeviceRGB)
return DeviceRGBColorSpace::the();
if (name == CommonNames::DeviceCMYK)
return DeviceCMYKColorSpace::the();
return TRY(DeviceCMYKColorSpace::the());
if (name == CommonNames::Pattern)
return Error::rendering_unsupported_error("Pattern color spaces not yet implemented");
VERIFY_NOT_REACHED();
@ -134,7 +134,7 @@ Vector<float> DeviceRGBColorSpace::default_decode() const
return { 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, 1.0f };
}
NonnullRefPtr<DeviceCMYKColorSpace> DeviceCMYKColorSpace::the()
ErrorOr<NonnullRefPtr<DeviceCMYKColorSpace>> DeviceCMYKColorSpace::the()
{
static auto instance = adopt_ref(*new DeviceCMYKColorSpace());
return instance;