Added xpath support

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14352 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2002-08-27 15:46:15 +00:00
parent 7e2248c901
commit 505cf97c4f
4 changed files with 263 additions and 4 deletions

View file

@ -234,10 +234,12 @@ static Class NSURLHandleClass = 0;
*/
- (void) addClient: (id <NSURLHandleClient>)client
{
RETAIN((id)client);
[_clients removeObjectIdenticalTo: client];
[_clients addObject: client];
RELEASE((id)client);
id o = client;
RETAIN(o);
[_clients removeObjectIdenticalTo: o];
[_clients addObject: o];
RELEASE(o);
}
/**