Use string objects instead of C strings

for name arguments to encoding methods.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@796 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-01-24 03:33:21 +00:00
parent 6593f89af7
commit 300f160311
14 changed files with 41 additions and 41 deletions

View file

@ -68,10 +68,10 @@
[super _encodeCollectionWithCoder:aCoder];
[aCoder encodeValueOfCType:@encode(char*)
at:&enc
withName:"Set contents encoding"];
withName:@"Set contents encoding"];
[aCoder encodeValueOfCType:@encode(unsigned)
at:&(_contents_hash->size)
withName:"Set contents capacity"];
withName:@"Set contents capacity"];
return;
}