mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-29 22:07:39 +00:00
Fix compilation error in connectionDied:
This commit is contained in:
parent
57cf738c8b
commit
f261f1e025
2 changed files with 7 additions and 1 deletions
|
@ -25,7 +25,8 @@ static int clients;
|
|||
+ (void)connectionDied: (NSNotification*)aNotification
|
||||
{
|
||||
NSEnumerator *e = [[[aNotification object] localObjects] objectEnumerator];
|
||||
for (NSObject *o = [e nextObject] ; nil != o ; o = [e nextObject])
|
||||
NSObject *o = nil
|
||||
for (o = [e nextObject] ; nil != o ; o = [e nextObject])
|
||||
{
|
||||
if ([o isKindOfClass: self])
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue