Fix an unsigned->NSUInteger

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@31352 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2010-09-15 22:17:51 +00:00
parent a3eb0e0e6e
commit a1cd16df1d
2 changed files with 7 additions and 2 deletions

View file

@ -623,7 +623,7 @@ _attributesAtIndexEffectiveRange(
return _textProxy;
}
- (NSDictionary*) attributesAtIndex: (unsigned)index
- (NSDictionary*) attributesAtIndex: (NSUInteger)index
effectiveRange: (NSRange*)aRange
{
unsigned dummy;
@ -930,7 +930,7 @@ changeInLength: [aString length] - range.length];
}
// The superclass implementation is correct but too slow
- (unsigned int) length
- (NSUInteger) length
{
return [_textChars length];
}