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

@ -127,22 +127,22 @@
_style = style;
}
- (int) numberOfMajorTickMarks
- (NSInteger) numberOfMajorTickMarks
{
return _numberOfMajorTickMarks;
}
- (void) setNumberOfMajorTickMarks: (int)count
- (void) setNumberOfMajorTickMarks: (NSInteger)count
{
_numberOfMajorTickMarks = count;
}
- (int) numberOfTickMarks
- (NSInteger) numberOfTickMarks
{
return _numberOfTickMarks;
}
- (void) setNumberOfTickMarks: (int)count
- (void) setNumberOfTickMarks: (NSInteger)count
{
_numberOfTickMarks = count;
}
@ -157,7 +157,7 @@
_tickMarkPosition = pos;
}
- (double) tickMarkValueAtIndex: (int)index
- (double) tickMarkValueAtIndex: (NSInteger)index
{
if ((index < 0) || (index >= _numberOfTickMarks))
{
@ -168,7 +168,7 @@
return _minValue + index * (_maxValue - _minValue) / _numberOfTickMarks;
}
- (NSRect) rectOfTickMarkAtIndex: (int)index
- (NSRect) rectOfTickMarkAtIndex: (NSInteger)index
{
NSRect cellRect = NSZeroRect;
float frameWidth = _cellFrame.size.width;
@ -193,7 +193,7 @@
// If major tick marks fit with even spacing
else if ((_numberOfTickMarks -1) % (_numberOfMajorTickMarks - 1) == 0)
{
int minorTicksPerMajor = (_numberOfTickMarks - 1) / (_numberOfMajorTickMarks - 1);
NSInteger minorTicksPerMajor = (_numberOfTickMarks - 1) / (_numberOfMajorTickMarks - 1);
// If index is a major tick mark
if (index % minorTicksPerMajor == 0)