mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-26 09:41:03 +00:00
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:
parent
fabc394c4a
commit
e257334240
1 changed files with 29 additions and 28 deletions
|
@ -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 */
|
||||||
|
|
Loading…
Reference in a new issue