r3857 Contextual Menu generates console error

This commit is contained in:
Mitchell Livingston 2011-01-24 02:01:36 +00:00
parent 8efbb0ffc5
commit 6de2ac3e4b
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ typedef enum
{
NSIndexSet * indexSet = [fOutline selectedRowIndexes];
for (NSInteger i = [indexSet firstIndex]; i != NSNotFound; i = [indexSet indexGreaterThanIndex: i])
if ([fTorrent fileLocation: [fFileList objectAtIndex: i]] != nil)
if ([fTorrent fileLocation: [fOutline itemAtRow: i]] != nil)
return YES;
return NO;
}