mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 19:01:15 +00:00
Fix typos
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14995 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f49099ab2b
commit
d2e366a641
1 changed files with 4 additions and 4 deletions
|
@ -587,9 +587,9 @@ void __dummy_GMAppKit_functionForLinking() {}
|
|||
[archiver encodeFloat:[self brightnessComponent] withName:@"brightness"];
|
||||
}
|
||||
else if ([colorSpaceName isEqual:@"NSNamedColorSpace"]) {
|
||||
[unarchiver encodeString:[self catalogNameComponent]
|
||||
[archiver encodeString:[self catalogNameComponent]
|
||||
withName:@"catalogName"];
|
||||
[unarchiver encodeString:[self colorNameComponent] withName:@"colorName"];
|
||||
[archiver encodeString:[self colorNameComponent] withName:@"colorName"];
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -640,8 +640,8 @@ void __dummy_GMAppKit_functionForLinking() {}
|
|||
return [self colorWithCalibratedRed:red green:green blue:blue alpha:alpha];
|
||||
}
|
||||
else if ([colorSpaceName isEqual:@"NSNamedColorSpace"]) {
|
||||
NSString *catalog = [unarchiver decodeObjecWithName: @"catalogName"];
|
||||
NSString *colornm = [unarchiver decodeObjecWithName: @"colorName"];
|
||||
NSString *catalog = [unarchiver decodeStringWithName: @"catalogName"];
|
||||
NSString *colornm = [unarchiver decodeStringWithName: @"colorName"];
|
||||
return [self colorWithCatalogName: catalog colorName: colornm];
|
||||
}
|
||||
return nil;
|
||||
|
|
Loading…
Reference in a new issue