mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-21 02:20:55 +00:00
* EOControl/EOGenericRecord.m
([_getValueForKey:selector:type:size:offset:]): Replace deprecated use of GSObjCGetValue with GSObjCGetVal. ([_setValueForKey:selector:type:size:offset:]): Replace deprecated use of GSObjCSetValue with GSObjCSetVal. * EOControl/EOKeyValueCoding.m ([NSObject takeValue:forKey:]): Replace deprecated use of GSObjCSetValue with GSObjCSetVal. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@22805 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c19aa897d7
commit
3d705c00c4
3 changed files with 14 additions and 3 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
2006-04-24 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* EOControl/EOGenericRecord.m
|
||||
([_getValueForKey:selector:type:size:offset:]): Replace deprecated use
|
||||
of GSObjCGetValue with GSObjCGetVal.
|
||||
([_setValueForKey:selector:type:size:offset:]): Replace deprecated use
|
||||
of GSObjCSetValue with GSObjCSetVal.
|
||||
* EOControl/EOKeyValueCoding.m
|
||||
([NSObject takeValue:forKey:]): Replace deprecated use of
|
||||
GSObjCSetValue with GSObjCSetVal.
|
||||
|
||||
2006-03-19 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
* EOControl/EODetailDataSource.m (-editingContext): Return the master
|
||||
|
|
|
@ -284,7 +284,7 @@ static const char _c_id[2] = { _C_ID, 0 };
|
|||
}
|
||||
else
|
||||
{
|
||||
value = GSObjCGetValue(self, aKey, sel, type, size, offset);
|
||||
value = GSObjCGetVal(self, [aKey UTF8String], sel, type, size, offset);
|
||||
EOFLOGObjectLevelArgs(@"EOGenericRecordKVC", @"value %p (class=%@)",
|
||||
value, [value class]);
|
||||
}
|
||||
|
@ -315,7 +315,7 @@ static const char _c_id[2] = { _C_ID, 0 };
|
|||
EOMKKD_removeObjectForKeyWithImpPtr(dictionary,NULL,aKey);
|
||||
}
|
||||
else
|
||||
GSObjCSetValue(self, aKey, anObject, sel, type, size, offset);
|
||||
GSObjCSetVal(self, [aKey UTF8String], anObject, sel, type, size, offset);
|
||||
|
||||
EOFLOGObjectFnStopCond(@"EOGenericRecordKVC");
|
||||
}
|
||||
|
|
|
@ -179,7 +179,7 @@ initialize(void)
|
|||
}
|
||||
}
|
||||
}
|
||||
GSObjCSetValue(self, aKey, anObject, sel, type, size, off);
|
||||
GSObjCSetVal(self, [aKey UTF8String], anObject, sel, type, size, off);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue