mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Prefixed ivars with underscore
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5527 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e70a5cde23
commit
d986b354b2
1 changed files with 7 additions and 2 deletions
|
@ -41,8 +41,8 @@
|
|||
@interface NSControl : NSView <NSCoding>
|
||||
{
|
||||
// Attributes
|
||||
int tag;
|
||||
id cell;
|
||||
int _tag;
|
||||
id _cell; // id so compiler wont complain too much for subclasses
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -50,6 +50,11 @@
|
|||
//
|
||||
- (id)initWithFrame:(NSRect)frameRect;
|
||||
|
||||
//
|
||||
// Creating copies
|
||||
//
|
||||
- (id) copyWithZone: (NSZone*)zone;
|
||||
|
||||
//
|
||||
// Setting the Control's Cell
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue