mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +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
eaa0fe908e
commit
a4d33fa28e
19 changed files with 90 additions and 90 deletions
|
@ -60,10 +60,10 @@ static BOOL debug_connected_coder = NO;
|
|||
newsp->connection = c;
|
||||
newsp->sequence_number = n;
|
||||
newsp->identifier = i;
|
||||
[newsp encodeValueOfSimpleType:@encode(typeof(newsp->sequence_number))
|
||||
[newsp encodeValueOfCType:@encode(typeof(newsp->sequence_number))
|
||||
at:&(newsp->sequence_number)
|
||||
withName:"ConnectedCoder sequence number"];
|
||||
[newsp encodeValueOfSimpleType:@encode(typeof(newsp->identifier))
|
||||
[newsp encodeValueOfCType:@encode(typeof(newsp->identifier))
|
||||
at:&(newsp->identifier)
|
||||
withName:"ConnectedCoder identifier"];
|
||||
return newsp;
|
||||
|
@ -113,10 +113,10 @@ static BOOL debug_connected_coder = NO;
|
|||
newsp->connection = [Connection newForInPort:inPort
|
||||
outPort:newsp->remotePort
|
||||
ancestorConnection:c];
|
||||
[newsp decodeValueOfSimpleType:@encode(typeof(newsp->sequence_number))
|
||||
[newsp decodeValueOfCType:@encode(typeof(newsp->sequence_number))
|
||||
at:&(newsp->sequence_number)
|
||||
withName:NULL];
|
||||
[newsp decodeValueOfSimpleType:@encode(typeof(newsp->identifier))
|
||||
[newsp decodeValueOfCType:@encode(typeof(newsp->identifier))
|
||||
at:&(newsp->identifier)
|
||||
withName:NULL];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue