Indendation changes; removed a useless @class NSArray; declaration

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@10268 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2001-06-29 10:17:38 +00:00
parent fabc394c4a
commit e257334240

View file

@ -28,7 +28,7 @@
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
#import <AppKit/NSNibDeclarations.h> #import <AppKit/NSNibDeclarations.h>
@class NSWindow, NSDocument, NSArray; @class NSWindow, NSDocument;
@interface NSWindowController : NSObject <NSCoding> @interface NSWindowController : NSObject <NSCoding>
{ {
@ -39,7 +39,8 @@
NSDocument *_document; NSDocument *_document;
NSArray *_topLevelObjects; NSArray *_topLevelObjects;
id _owner; id _owner;
struct ___wcFlags { struct ___wcFlags
{
unsigned int shouldCloseDocument:1; unsigned int shouldCloseDocument:1;
unsigned int shouldCascade:1; unsigned int shouldCascade:1;
unsigned int nibIsLoaded:1; unsigned int nibIsLoaded:1;
@ -74,4 +75,4 @@
@end @end
#endif #endif /* _GNUstep_H_NSWindowController */