mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
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:
parent
7e2248c901
commit
505cf97c4f
4 changed files with 263 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue