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:
Fred Kiefer 2011-12-17 17:16:09 +00:00
parent 0a6beb65c6
commit 8ad4aa86c4
35 changed files with 248 additions and 214 deletions

View file

@ -50,8 +50,8 @@ typedef enum _NSLevelIndicatorStyle
double _maxValue;
double _warningValue;
double _criticalValue;
int _numberOfMajorTickMarks;
int _numberOfTickMarks;
NSInteger _numberOfMajorTickMarks;
NSInteger _numberOfTickMarks;
NSLevelIndicatorStyle _style;
NSTickMarkPosition _tickMarkPosition;
NSRect _cellFrame;
@ -72,14 +72,14 @@ typedef enum _NSLevelIndicatorStyle
- (NSLevelIndicatorStyle)style;
- (void)setLevelIndicatorStyle:(NSLevelIndicatorStyle)style;
- (int)numberOfMajorTickMarks;
- (void)setNumberOfMajorTickMarks:(int)count;
- (int)numberOfTickMarks;
- (void)setNumberOfTickMarks:(int)count;
- (NSInteger)numberOfMajorTickMarks;
- (void)setNumberOfMajorTickMarks:(NSInteger)count;
- (NSInteger)numberOfTickMarks;
- (void)setNumberOfTickMarks:(NSInteger)count;
- (NSTickMarkPosition)tickMarkPosition;
- (void)setTickMarkPosition:(NSTickMarkPosition) pos;
- (double)tickMarkValueAtIndex:(int)index;
- (NSRect)rectOfTickMarkAtIndex:(int)index;
- (double)tickMarkValueAtIndex:(NSInteger)index;
- (NSRect)rectOfTickMarkAtIndex:(NSInteger)index;
@end