void TorrentListCtrl::OnRetry(wxCommandEvent &/*event*/) { DataType info( GetSelectedData() ); torrent().RemoveTorrentByName( info.name ); RemoveTorrentInfo( info ); torrent().RequestFileByName( info.name ); }
void DownloadListCtrl::OnRetry(wxCommandEvent &/*event*/) { DataType info( GetSelectedData() ); //prDownloader().RemoveTorrentByName( info.name ); RemoveTorrentInfo( info ); assert(false); // prDownloader().RequestFileByName( info.name ); }
void TorrentListCtrl::OnCancel(wxCommandEvent &/*event*/) { torrent().RemoveTorrentByName(GetSelectedData().name); RemoveTorrentInfo(GetSelectedData()); }
void DownloadListCtrl::OnCancel(wxCommandEvent &/*event*/) { //prDownloader().RemoveTorrentByName(GetSelectedData().name); RemoveTorrentInfo(GetSelectedData()); }