mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-02 12:11:00 +00:00
Prefixed all ivars with underscore
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@7395 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ef79bf6fe3
commit
4a96f79258
2 changed files with 306 additions and 306 deletions
|
@ -93,36 +93,36 @@ extern NSSize NSTokenSize;
|
||||||
|
|
||||||
@interface NSWindow : NSResponder <NSCoding>
|
@interface NSWindow : NSResponder <NSCoding>
|
||||||
{
|
{
|
||||||
NSRect frame;
|
NSRect _frame;
|
||||||
NSSize minimum_size;
|
NSSize _minimumSize;
|
||||||
NSSize maximum_size;
|
NSSize _maximumSize;
|
||||||
NSSize increments;
|
NSSize _increments;
|
||||||
NSString *autosave_name;
|
NSString *_autosaveName;
|
||||||
id _wv;
|
id _wv;
|
||||||
id content_view;
|
id _contentView;
|
||||||
id first_responder;
|
id _firstResponder;
|
||||||
id original_responder;
|
id _originalResponder;
|
||||||
NSView *_initial_first_responder;
|
NSView *_initialFirstResponder;
|
||||||
id _delegate;
|
id _delegate;
|
||||||
id _fieldEditor;
|
id _fieldEditor;
|
||||||
id _lastDragView;
|
id _lastDragView;
|
||||||
int window_num;
|
int _windowNum;
|
||||||
int gstate;
|
int _gstate;
|
||||||
NSColor *background_color;
|
NSColor *_backgroundColor;
|
||||||
NSString *represented_filename;
|
NSString *_representedFilename;
|
||||||
NSString *miniaturized_title;
|
NSString *_miniaturizedTitle;
|
||||||
NSImage *miniaturized_image;
|
NSImage *_miniaturizedImage;
|
||||||
NSString *window_title;
|
NSString *_windowTitle;
|
||||||
NSPoint last_point;
|
NSPoint _lastPoint;
|
||||||
NSBackingStoreType backing_type;
|
NSBackingStoreType _backingType;
|
||||||
unsigned style_mask;
|
unsigned _styleMask;
|
||||||
int window_level;
|
int _windowLevel;
|
||||||
NSRect rectNeedingFlush;
|
NSRect _rectNeedingFlush;
|
||||||
NSMutableArray *rectsBeingDrawn;
|
NSMutableArray *_rectsBeingDrawn;
|
||||||
unsigned disable_flush_window;
|
unsigned _disableFlushWindow;
|
||||||
NSSelectionDirection _selection_direction;
|
NSSelectionDirection _selectionDirection;
|
||||||
|
|
||||||
NSWindowDepth depth_limit;
|
NSWindowDepth _depthLimit;
|
||||||
NSWindowController *_windowController;
|
NSWindowController *_windowController;
|
||||||
int _counterpart;
|
int _counterpart;
|
||||||
|
|
||||||
|
@ -149,7 +149,7 @@ extern NSSize NSTokenSize;
|
||||||
} _f;
|
} _f;
|
||||||
|
|
||||||
/* Reserved for back-end use */
|
/* Reserved for back-end use */
|
||||||
void *be_wind_reserved;
|
void *_be_wind_reserved;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue