Removed a superfluous (redundant) function I wrote for revision 172

CQTexperiment
sryegkahl 2006-05-24 18:09:44 +00:00
parent a430aff269
commit aea620374c
3 changed files with 3 additions and 16 deletions

View File

@ -76,6 +76,5 @@
- (NSArray *)acceptablePlaylistTypes;
- (IBAction)showFileInFinder:(id)sender;
- (void)setSelectedRow:(int)row;
- (int)selectedRow;
@end

View File

@ -699,21 +699,11 @@
- (IBAction)showFileInFinder:(id)sender
{
NSWorkspace* ws = [NSWorkspace sharedWorkspace];
if (selectedRow < 0)
if ([self selectionIndex] < 0)
return;
PlaylistEntry* curr = [self entryAtIndex:selectedRow];
PlaylistEntry* curr = [self entryAtIndex:[self selectionIndex]];
[ws selectFile:[curr filename] inFileViewerRootedAtPath:[curr filename]];
}
- (void)setSelectedRow:(int)row
{
selectedRow = row;
}
- (int)selectedRow
{
return selectedRow;
}
@end

View File

@ -74,8 +74,6 @@
if (!currentRowIsSelected)
[self selectRow:row byExtendingSelection:NO];
[playlistController setSelectedRow:[self selectedRow]];
if ([self numberOfSelectedRows] <=0)
{
//No rows are selected, so the table should be displayed with all items disabled