Fixed: Removed all warnings of conflicting return and parameter types caused by the new compiler

This commit is contained in:
Martin Carlberg
2013-08-12 16:46:14 +02:00
parent 1cfc8139b9
commit bb58a206a8
82 changed files with 202 additions and 189 deletions
+4 -4
View File
@@ -1079,22 +1079,22 @@
return [_contentArray count];
}
- (id)objectInItemsArrayAtIndex:(unsigned int)index
- (id)objectInItemsArrayAtIndex:(CPUInteger)index
{
return [_contentArray objectAtIndex:index];
}
- (void)insertObject:(id)anObject inItemsArrayAtIndex:(unsigned int)index
- (void)insertObject:(id)anObject inItemsArrayAtIndex:(CPUInteger)index
{
[_contentArray insertObject:anObject atIndex:index];
}
- (void)removeObjectFromItemsArrayAtIndex:(unsigned int)index
- (void)removeObjectFromItemsArrayAtIndex:(CPUInteger)index
{
[_contentArray removeObjectAtIndex:index];
}
- (void)replaceObjectInItemsArrayAtIndex:(unsigned int)index withObject:(id)anObject
- (void)replaceObjectInItemsArrayAtIndex:(CPUInteger)index withObject:(id)anObject
{
[_contentArray replaceObjectAtIndex:index withObject:anObject];
}