mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 11:40:47 +00:00
Prefixed ivars with underscores; removed old unused ivar
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5452 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1248f506d7
commit
62ca2dabec
1 changed files with 10 additions and 13 deletions
|
@ -48,19 +48,16 @@ typedef enum _NSButtonType {
|
|||
@interface NSButtonCell : NSActionCell <NSCopying, NSCoding>
|
||||
{
|
||||
// Attributes
|
||||
NSString *altContents;
|
||||
NSImage *altImage;
|
||||
NSString* keyEquivalent;
|
||||
NSFont* keyEquivalentFont;
|
||||
unsigned int keyEquivalentModifierMask;
|
||||
BOOL transparent;
|
||||
unsigned int highlightsByMask;
|
||||
unsigned int showAltStateMask;
|
||||
float delayInterval;
|
||||
float repeatInterval;
|
||||
|
||||
// Reserved for back-end use
|
||||
void *be_bc_reserved;
|
||||
NSString *_altContents;
|
||||
NSImage *_altImage;
|
||||
NSString* _keyEquivalent;
|
||||
NSFont* _keyEquivalentFont;
|
||||
unsigned int _keyEquivalentModifierMask;
|
||||
BOOL _is_transparent;
|
||||
unsigned int _highlightsByMask;
|
||||
unsigned int _showAltStateMask;
|
||||
float _delayInterval;
|
||||
float _repeatInterval;
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue