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:
mccallum 1996-01-23 23:57:17 +00:00
parent 97ceb69629
commit e8e57eaff3
19 changed files with 90 additions and 90 deletions

View file

@ -255,7 +255,7 @@ static Class NXConnectionProxyClass;
- encodeData:(void *)data ofType:(const char *)type
{
[self encodeValueOfType:type at:data withName:NULL];
[self encodeValueOfObjCType:type at:data withName:NULL];
return self;
}
@ -263,7 +263,7 @@ static Class NXConnectionProxyClass;
{
char types[16];
sprintf(types, "[%dc]", count);
[self encodeValueOfType:types at:bytes withName:NULL];
[self encodeValueOfObjCType:types at:bytes withName:NULL];
return self;
}
@ -293,7 +293,7 @@ static Class NXConnectionProxyClass;
- decodeData:(void *)d ofType:(const char *)t
{
[self decodeValueOfType:t at:d withName:NULL];
[self decodeValueOfObjCType:t at:d withName:NULL];
return self;
}
@ -301,7 +301,7 @@ static Class NXConnectionProxyClass;
{
char types[16];
sprintf(types, "[%dc]", count);
[self decodeValueOfType:types at:bytes withName:NULL];
[self decodeValueOfObjCType:types at:bytes withName:NULL];
return self;
}