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:
Richard Frith-MacDonald 1998-07-24 10:01:29 +00:00
parent 78167b4744
commit 064bb6672c

View file

@ -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