mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 20:01:22 +00:00
Correct mistype in last commit.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@25712 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2ca28c413e
commit
d1797af60c
1 changed files with 2 additions and 2 deletions
|
@ -316,7 +316,7 @@
|
|||
if ((fillColorS == nil)
|
||||
|| ((color = [NSColor colorWithColorSpace: fillColorS
|
||||
components: values
|
||||
count: [fillColorS numberOfComponents] + 1]) == nil)
|
||||
count: [fillColorS numberOfColorComponents] + 1]) == nil)
|
||||
|| ((color = [color colorUsingColorSpaceName: NSDeviceRGBColorSpace]) == nil))
|
||||
{
|
||||
DPS_ERROR(DPSundefined, @"No fill colorspace defined, assume DeviceRGB");
|
||||
|
@ -342,7 +342,7 @@
|
|||
if ((strokeColorS == nil)
|
||||
|| ((color = [NSColor colorWithColorSpace: strokeColorS
|
||||
components: values
|
||||
count: [strokeColorS numberOfComponents] + 1]) == nil)
|
||||
count: [strokeColorS numberOfColorComponents] + 1]) == nil)
|
||||
|| ((color = [color colorUsingColorSpaceName: NSDeviceRGBColorSpace]) == nil))
|
||||
{
|
||||
DPS_ERROR(DPSundefined, @"No stroke colorspace defined, assume DeviceRGB");
|
||||
|
|
Loading…
Reference in a new issue