mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Fix bug #16386
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22823 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8b324bfea1
commit
9989d955b5
2 changed files with 7 additions and 2 deletions
|
@ -1,4 +1,8 @@
|
|||
2006-04-27 Sergii Stoian <stoyan255@ukr.net>
|
||||
2006-04-26 Marcus Muller
|
||||
|
||||
* Source/NSKeyValueCoding.m: Fix bug #16386
|
||||
|
||||
2006-04-26 Sergii Stoian <stoyan255@ukr.net>
|
||||
|
||||
* Resources/Languages/Russian: Updates and fixes
|
||||
|
||||
|
|
|
@ -341,6 +341,7 @@ static id ValueForKey(NSObject *self, const char *key, unsigned size)
|
|||
if ([self methodForSelector: @selector(handleTakeValue:forUnboundKey:)] != o)
|
||||
{
|
||||
[self handleTakeValue: anObject forUnboundKey: aKey];
|
||||
return;
|
||||
}
|
||||
|
||||
dict = [NSDictionary dictionaryWithObjectsAndKeys:
|
||||
|
@ -624,7 +625,7 @@ static id ValueForKey(NSObject *self, const char *key, unsigned size)
|
|||
NSNull *null = [NSNull null];
|
||||
NSString *key;
|
||||
|
||||
GSOnceMLog(@"This method is deprecated, use -setValue:forKeyPath:");
|
||||
GSOnceMLog(@"This method is deprecated, use -setValuesForKeysWithDictionary:");
|
||||
while ((key = [enumerator nextObject]) != nil)
|
||||
{
|
||||
id obj = [aDictionary objectForKey: key];
|
||||
|
|
Loading…
Reference in a new issue