mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
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:
parent
a11f420b91
commit
07b43d0e5d
14 changed files with 41 additions and 41 deletions
|
@ -97,9 +97,9 @@
|
|||
|
||||
[super _encodeCollectionWithCoder:aCoder];
|
||||
[aCoder encodeValueOfObjCType:@encode(char*) at:&encoding
|
||||
withName:"EltNodeCollector Content Type Encoding"];
|
||||
withName:@"EltNodeCollector Content Type Encoding"];
|
||||
[aCoder encodeValueOfObjCType:"#" at:&_node_class
|
||||
withName:"EltNodeCollector Content Node Class"];
|
||||
withName:@"EltNodeCollector Content Node Class"];
|
||||
}
|
||||
|
||||
- _initCollectionWithCoder: aCoder
|
||||
|
@ -117,7 +117,7 @@
|
|||
- (void) _encodeContentsWithCoder: (Coder*)aCoder
|
||||
{
|
||||
[aCoder encodeObject:_contents_collector
|
||||
withName:"EltNodeCollector Contents Collector"];
|
||||
withName:@"EltNodeCollector Contents Collector"];
|
||||
}
|
||||
|
||||
- (void) _decodeContentsWithCoder: (Coder*)aCoder
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue