mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 02:04:20 +00:00
Fix compilation error in connectionDied:
This commit is contained in:
parent
57cf738c8b
commit
f61d60b7b2
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2018-01-22 Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* Tools/speech/GSSpeechSynthesizer.m: Correct compilation
|
||||
error in for loop in connectionDied: method.
|
||||
|
||||
2018-01-21 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Tools/speech/GNUmakefile: Remove specific OBJC flags.
|
||||
|
|
|
@ -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…
Reference in a new issue