Changed ivar name

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5764 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2000-01-13 23:14:48 +00:00
parent 4979ac69cc
commit 279717e837

View file

@ -33,7 +33,11 @@
@interface NSFormCell : NSActionCell <NSCoding>
{
float _titleWidth;
// NB: this is the titleWidth which is effectively used -- takes in
// account all the other cells' titleWidths.
// If its value is -1, it means it must be recomputed.
float _displayedTitleWidth;
// Think the following as a BOOL ivar
// YES if the titleWidth is automatically computed
#define _formcell_auto_title_width _cell.subclass_bool_one
@ -72,4 +76,7 @@
@end
extern NSString *_NSFormCellDidChangeTitleWidthNotification;
#endif // _GNUstep_H_NSFormCell