- (void) confirmRemoveTorrents: (NSArray *) torrents deleteData: (BOOL) deleteData
{
+ NSMutableArray * selectedValues = [NSMutableArray arrayWithArray: [fTableView selectedValues]];
+ [selectedValues removeObjectsInArray: torrents];
+
//don't want any of these starting then stopping
for (Torrent * torrent in torrents)
[torrent setWaitToStart: NO];
#warning why do we need them retained?
[torrents release];
- [fTableView deselectAll: nil];
+ [fTableView selectValues: selectedValues];
[self updateTorrentsInQueue];
}