mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
removed some c99-isms
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@25875 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9294743e9c
commit
1ce306e181
1 changed files with 4 additions and 2 deletions
|
@ -353,6 +353,8 @@
|
|||
NSArray *objs;
|
||||
NSMutableArray *connections;
|
||||
NSDictionary *nt;
|
||||
id visObj;
|
||||
id defObj;
|
||||
|
||||
if ([super loadFileWrapper: wrapper withDocument: doc])
|
||||
{
|
||||
|
@ -446,7 +448,7 @@
|
|||
// Get all of the visible objects...
|
||||
//
|
||||
visible = [container visibleWindows];
|
||||
id visObj = nil;
|
||||
visObj = nil;
|
||||
enumerator = [visible objectEnumerator];
|
||||
while((visObj = [enumerator nextObject]) != nil)
|
||||
{
|
||||
|
@ -457,7 +459,7 @@
|
|||
// Get all of the deferred objects...
|
||||
//
|
||||
deferred = [container deferredWindows];
|
||||
id defObj = nil;
|
||||
defObj = nil;
|
||||
enumerator = [deferred objectEnumerator];
|
||||
while((defObj = [enumerator nextObject]) != nil)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue