mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-03 17:10:43 +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
c0a68db893
commit
a5414f5e78
1 changed files with 10 additions and 13 deletions
|
@ -48,19 +48,16 @@ typedef enum _NSButtonType {
|
||||||
@interface NSButtonCell : NSActionCell <NSCopying, NSCoding>
|
@interface NSButtonCell : NSActionCell <NSCopying, NSCoding>
|
||||||
{
|
{
|
||||||
// Attributes
|
// Attributes
|
||||||
NSString *altContents;
|
NSString *_altContents;
|
||||||
NSImage *altImage;
|
NSImage *_altImage;
|
||||||
NSString* keyEquivalent;
|
NSString* _keyEquivalent;
|
||||||
NSFont* keyEquivalentFont;
|
NSFont* _keyEquivalentFont;
|
||||||
unsigned int keyEquivalentModifierMask;
|
unsigned int _keyEquivalentModifierMask;
|
||||||
BOOL transparent;
|
BOOL _is_transparent;
|
||||||
unsigned int highlightsByMask;
|
unsigned int _highlightsByMask;
|
||||||
unsigned int showAltStateMask;
|
unsigned int _showAltStateMask;
|
||||||
float delayInterval;
|
float _delayInterval;
|
||||||
float repeatInterval;
|
float _repeatInterval;
|
||||||
|
|
||||||
// Reserved for back-end use
|
|
||||||
void *be_bc_reserved;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue