mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 20:50:38 +00:00
Replace some occurences of int with NSInteger
and unsigned with NSUInteger. This allows to recompile gui on 64 bit systems after the change to NSNotFound in base. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34312 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0a6beb65c6
commit
8ad4aa86c4
35 changed files with 248 additions and 214 deletions
|
@ -49,15 +49,15 @@
|
|||
//
|
||||
- (void)setButtonType:(NSButtonType)aType;
|
||||
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
||||
- (void)setHighlightsBy:(int)aType;
|
||||
- (void)setShowsStateBy:(int)aType;
|
||||
- (void)setHighlightsBy:(NSInteger)aType;
|
||||
- (void)setShowsStateBy:(NSInteger)aType;
|
||||
#endif
|
||||
|
||||
//
|
||||
// Setting the State
|
||||
//
|
||||
- (void)setState:(int)value;
|
||||
- (int)state;
|
||||
- (void)setState:(NSInteger)value;
|
||||
- (NSInteger)state;
|
||||
- (BOOL)allowsMixedState;
|
||||
- (void)setAllowsMixedState: (BOOL)flag;
|
||||
- (void)setNextState;
|
||||
|
@ -118,9 +118,9 @@
|
|||
// Setting the Key Equivalent
|
||||
//
|
||||
- (NSString *)keyEquivalent;
|
||||
- (unsigned int)keyEquivalentModifierMask;
|
||||
- (NSUInteger)keyEquivalentModifierMask;
|
||||
- (void)setKeyEquivalent:(NSString *)aKeyEquivalent;
|
||||
- (void)setKeyEquivalentModifierMask:(unsigned int)mask;
|
||||
- (void)setKeyEquivalentModifierMask:(NSUInteger)mask;
|
||||
|
||||
//
|
||||
// Handling Events and Action Messages
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue