Use release' and dealloc' instead of `free'.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@103 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-03-12 19:58:48 +00:00
parent 6fbf69b711
commit 9dadd15c78
13 changed files with 53 additions and 47 deletions

View file

@ -50,7 +50,7 @@ static Class NXConnectionProxyClass;
[aList addObject:c];
}
[cs withObjectsCall:add_to_aList];
[cs free];
[cs release];
return self;
}
@ -176,7 +176,7 @@ static Class NXConnectionProxyClass;
[aList addObject:c];
}
[cs withObjectsCall:add_to_aList];
[cs free];
[cs release];
return aList;
}
@ -189,7 +189,7 @@ static Class NXConnectionProxyClass;
[aList addObject:c];
}
[cs withObjectsCall:add_to_aList];
[cs free];
[cs release];
return aList;
}