mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 02:41:01 +00:00
Prefixed all ivars with underscores
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@7461 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6b02a79f71
commit
9541af5ac3
2 changed files with 342 additions and 342 deletions
|
@ -49,22 +49,22 @@ typedef enum _NSMatrixMode {
|
||||||
|
|
||||||
@interface NSMatrix : NSControl <NSCoding>
|
@interface NSMatrix : NSControl <NSCoding>
|
||||||
{
|
{
|
||||||
id **cells;
|
id **_cells;
|
||||||
BOOL **selectedCells;
|
BOOL **_selectedCells;
|
||||||
int maxRows;
|
int _maxRows;
|
||||||
int maxCols;
|
int _maxCols;
|
||||||
int numRows;
|
int _numRows;
|
||||||
int numCols;
|
int _numCols;
|
||||||
NSZone *myZone;
|
NSZone *_myZone;
|
||||||
Class cellClass;
|
Class _cellClass;
|
||||||
id cellPrototype;
|
id _cellPrototype;
|
||||||
IMP cellNew;
|
IMP _cellNew;
|
||||||
IMP cellInit;
|
IMP _cellInit;
|
||||||
NSMatrixMode mode;
|
NSMatrixMode _mode;
|
||||||
NSSize cellSize;
|
NSSize _cellSize;
|
||||||
NSSize intercell;
|
NSSize _intercell;
|
||||||
NSColor *backgroundColor;
|
NSColor *_backgroundColor;
|
||||||
NSColor *cellBackgroundColor;
|
NSColor *_cellBackgroundColor;
|
||||||
id _delegate;
|
id _delegate;
|
||||||
NSText* _textObject;
|
NSText* _textObject;
|
||||||
BOOL _tabKeyTraversesCells;
|
BOOL _tabKeyTraversesCells;
|
||||||
|
@ -75,12 +75,12 @@ typedef enum _NSMatrixMode {
|
||||||
id _selectedCell;
|
id _selectedCell;
|
||||||
int _selectedRow;
|
int _selectedRow;
|
||||||
int _selectedColumn;
|
int _selectedColumn;
|
||||||
BOOL allowsEmptySelection;
|
BOOL _allowsEmptySelection;
|
||||||
BOOL selectionByRect;
|
BOOL _selectionByRect;
|
||||||
BOOL drawsBackground;
|
BOOL _drawsBackground;
|
||||||
BOOL drawsCellBackground;
|
BOOL _drawsCellBackground;
|
||||||
BOOL autosizesCells;
|
BOOL _autosizesCells;
|
||||||
BOOL autoscroll;
|
BOOL _autoscroll;
|
||||||
id _keyCell;
|
id _keyCell;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue