mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Don't try to copy connections - they no longer inherit any copy behaviour.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2863 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
78167b4744
commit
064bb6672c
1 changed files with 5 additions and 1 deletions
|
@ -273,7 +273,11 @@ static int messages_received_count;
|
|||
|
||||
+ (NSArray*) allConnections
|
||||
{
|
||||
return [connection_array copy];
|
||||
int count = [connection_array count];
|
||||
id cons[count];
|
||||
|
||||
[connection_array getObjects: cons];
|
||||
return [NSArray arrayWithObjects: cons count: count];
|
||||
}
|
||||
|
||||
+ (NSConnection*) connectionWithRegisteredName: (NSString*)n
|
||||
|
|
Loading…
Reference in a new issue