aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPArrayAdditions.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2009-09-28 20:49:29 +0000
committerBibiko <bibiko@eva.mpg.de>2009-09-28 20:49:29 +0000
commit85418096bef008f1a9d7839bff9190a2f7b7817d (patch)
treeaeec4f0d7c7a83ab9aaaaf4f903a9938f63220f6 /Source/SPArrayAdditions.m
parenta35320cccdf35ed167c65000f76f2cb4127e55ea (diff)
downloadsequelpro-85418096bef008f1a9d7839bff9190a2f7b7817d.tar.gz
sequelpro-85418096bef008f1a9d7839bff9190a2f7b7817d.tar.bz2
sequelpro-85418096bef008f1a9d7839bff9190a2f7b7817d.zip
• some code cleaning and removing of the deprecated method 'selectedRowEnumerator'
Diffstat (limited to 'Source/SPArrayAdditions.m')
-rw-r--r--Source/SPArrayAdditions.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPArrayAdditions.m b/Source/SPArrayAdditions.m
index bce26872..e19869fa 100644
--- a/Source/SPArrayAdditions.m
+++ b/Source/SPArrayAdditions.m
@@ -60,9 +60,9 @@
- (NSArray *)subarrayWithIndexes:(NSIndexSet *)indexes
{
NSMutableArray *subArray = [NSMutableArray arrayWithCapacity:[indexes count]];
- unsigned count = [self count];
+ NSUInteger count = [self count];
- unsigned index = [indexes firstIndex];
+ NSUInteger index = [indexes firstIndex];
while ( index != NSNotFound )
{
if ( index < count )