Quick fix for compilation error

This commit is contained in:
Gregory John Casamento 2022-01-12 01:45:10 -05:00
parent fda74bfde8
commit 937c309c15

View file

@ -176,11 +176,13 @@
if (success && topLevelObjects && [table objectForKey: NSNibTopLevelObjects])
{
*topLevelObjects = [table objectForKey: NSNibTopLevelObjects];
FOR_IN(NSObject*, obj, *topLevelObjects)
NSEnumerator *en = [*topLevelObjects objectEnumerator];
id obj = nil;
while ((obj = [en nextObject]) != nil)
{
AUTORELEASE(obj);
}
END_FOR_IN(*topLevelObjects);
}
}