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:
Andrew McCallum 1996-01-23 23:57:17 +00:00
parent eaa0fe908e
commit a4d33fa28e
19 changed files with 90 additions and 90 deletions

View file

@ -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];