Updates for 10.5 API changes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27962 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2009-02-23 20:42:32 +00:00
parent 845a701069
commit 24d43481a8
138 changed files with 2094 additions and 1536 deletions

View file

@ -113,7 +113,7 @@ static Class NSMutableSet_concrete_class;
* New set containing (unique elements of) objects.
*/
+ (id) setWithObjects: (id*)objects
count: (unsigned)count
count: (NSUInteger)count
{
return AUTORELEASE([[self allocWithZone: NSDefaultMallocZone()]
initWithObjects: objects count: count]);
@ -162,7 +162,7 @@ static Class NSMutableSet_concrete_class;
/**
* Returns the number of objects stored in the set.
*/
- (unsigned) count
- (NSUInteger) count
{
[self subclassResponsibility: _cmd];
return 0;
@ -317,7 +317,7 @@ static Class NSMutableSet_concrete_class;
* other initialisers work.
*/
- (id) initWithObjects: (id*)objects
count: (unsigned)count
count: (NSUInteger)count
{
self = [self init];
return self;
@ -480,7 +480,7 @@ static Class NSMutableSet_concrete_class;
return (([self member: anObject]) ? YES : NO);
}
- (unsigned) hash
- (NSUInteger) hash
{
return [self count];
}
@ -922,7 +922,7 @@ static Class NSMutableSet_concrete_class;
/**
* New autoreleased instance with given capacity.
*/
+ (id) setWithCapacity: (unsigned)numItems
+ (id) setWithCapacity: (NSUInteger)numItems
{
return AUTORELEASE([[self allocWithZone: NSDefaultMallocZone()]
initWithCapacity: numItems]);
@ -955,7 +955,7 @@ static Class NSMutableSet_concrete_class;
* and needs to be re-implemented in subclasses in order to have all
* other initialisers work.
*/
- (id) initWithCapacity: (unsigned)numItems
- (id) initWithCapacity: (NSUInteger)numItems
{
self = [self init];
return self;
@ -979,7 +979,7 @@ static Class NSMutableSet_concrete_class;
}
- (id) initWithObjects: (id*)objects
count: (unsigned)count
count: (NSUInteger)count
{
self = [self initWithCapacity: count];
if (self != nil)