mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +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
6593f89af7
commit
300f160311
14 changed files with 41 additions and 41 deletions
|
@ -41,9 +41,9 @@
|
|||
- (void) encodeWithCoder: aCoder
|
||||
{
|
||||
[super encodeWithCoder:(id)aCoder];
|
||||
[aCoder encodeObjectReference:_right withName:"Right BinaryTree Node"];
|
||||
[aCoder encodeObjectReference:_left withName:"Left BinaryTree Node"];
|
||||
[aCoder encodeObjectReference:_parent withName:"Parent BinaryTree Node"];
|
||||
[aCoder encodeObjectReference:_right withName:@"Right BinaryTree Node"];
|
||||
[aCoder encodeObjectReference:_left withName:@"Left BinaryTree Node"];
|
||||
[aCoder encodeObjectReference:_parent withName:@"Parent BinaryTree Node"];
|
||||
}
|
||||
|
||||
- initWithCoder: aCoder
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue