Slight correction to previous change.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@20244 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-10-22 12:57:21 +00:00
parent 78b37d430e
commit 38ca67f7e9

View file

@ -32,13 +32,15 @@
@interface NSStepperCell : NSActionCell <NSCoding>
{
// Think of the following ones as of two BOOL ivars
#define _autorepeat _cell.subclass_bool_one
#define _valueWraps _cell.subclass_bool_two
double _maxValue;
double _minValue;
double _increment;
BOOL highlightUp;
BOOL highlightDown;
BOOL _autorepeat;
BOOL _valueWraps;
}
- (double)maxValue;