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
97ceb69629
commit
e8e57eaff3
19 changed files with 90 additions and 90 deletions
|
@ -66,10 +66,10 @@
|
|||
const char *enc = [self contentType];
|
||||
|
||||
[super _encodeCollectionWithCoder:aCoder];
|
||||
[aCoder encodeValueOfSimpleType:@encode(char*)
|
||||
[aCoder encodeValueOfCType:@encode(char*)
|
||||
at:&enc
|
||||
withName:"Set contents encoding"];
|
||||
[aCoder encodeValueOfSimpleType:@encode(unsigned)
|
||||
[aCoder encodeValueOfCType:@encode(unsigned)
|
||||
at:&(_contents_hash->size)
|
||||
withName:"Set contents capacity"];
|
||||
return;
|
||||
|
@ -81,10 +81,10 @@
|
|||
unsigned size;
|
||||
|
||||
[super _initCollectionWithCoder:aCoder];
|
||||
[aCoder decodeValueOfSimpleType:@encode(char*)
|
||||
[aCoder decodeValueOfCType:@encode(char*)
|
||||
at:&encoding
|
||||
withName:NULL];
|
||||
[aCoder decodeValueOfSimpleType:@encode(unsigned)
|
||||
[aCoder decodeValueOfCType:@encode(unsigned)
|
||||
at:&size
|
||||
withName:NULL];
|
||||
_contents_hash =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue