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:
Nicola Pero 1999-12-16 02:58:32 +00:00
parent e70a5cde23
commit d986b354b2

View file

@ -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
//