mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Use new-style method name "..ValueOfObjCType"
and "..ValueOfCType", instead of "..ValueOfType" and "..ValueOfSimpleType". git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@781 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
97ceb69629
commit
e8e57eaff3
19 changed files with 90 additions and 90 deletions
|
@ -53,7 +53,7 @@
|
|||
|
||||
- (void) encodeWithCoder: anEncoder
|
||||
{
|
||||
[anEncoder encodeValueOfSimpleType:@encode(unsigned char)
|
||||
[anEncoder encodeValueOfCType:@encode(unsigned char)
|
||||
at:&_send_behavior
|
||||
withName:"DelegatePool Send Behavior"];
|
||||
[anEncoder encodeObject:_list
|
||||
|
@ -65,7 +65,7 @@
|
|||
/* xxx Should be:
|
||||
DelegatePool *n = NSAllocateObject(self, 0, [aDecoder objectZone]); */
|
||||
DelegatePool *n = (id) NSAllocateObject(self, 0, NS_NOZONE);
|
||||
[aDecoder decodeValueOfSimpleType:@encode(unsigned char)
|
||||
[aDecoder decodeValueOfCType:@encode(unsigned char)
|
||||
at:&(n->_send_behavior)
|
||||
withName:NULL];
|
||||
[aDecoder decodeObjectAt:&(n->_list)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue