1
0
Mirror von https://github.com/arsenetar/dupeguru.git synchronisiert 2026-04-17 18:51:39 +00:00

Fixed ResultOutline.selectedDupeCount().

Dieser Commit ist enthalten in:
Virgil Dupras
2010-02-12 21:58:50 +01:00
Ursprung 1f71157063
Commit 7477330961

Datei anzeigen

@@ -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++;
} }
} }