Fixed ResultOutline.selectedDupeCount().

This commit is contained in:
Virgil Dupras 2010-02-12 21:58:50 +01:00
parent 1f71157063
commit 7477330961
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ http://www.hardcoded.net/licenses/hs_license
} }
else { else {
NSInteger r = 0; NSInteger r = 0;
for (NSArray *path in selected) { for (NSIndexPath *path in selected) {
if ([path count] == 2) { if ([path length] == 2) {
r++; r++;
} }
} }