* Source/NSMessagePort.m:

* Source/NSFileManager.m:
* Source/NSCharacterSet.m: Fix some method type mismatches. Generally when
a private subclass overrides a public method taking a NSUInteger with
a method taking an "unsigned" parameter.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31351 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ericwa 2010-09-15 22:16:18 +00:00
parent 6b083b1a28
commit 8b6fa9bea7
4 changed files with 14 additions and 6 deletions

View file

@ -3006,7 +3006,7 @@ static NSSet *fileKeys = nil;
}
}
- (unsigned int) count
- (NSUInteger) count
{
return [fileKeys count];
}