- BUGFIX: Pause/Start All now affect all tabs, not only the current one

This commit is contained in:
Christophe Dumez 2007-11-02 13:12:31 +00:00
parent 9ca02aad88
commit 0fc2d289eb
2 changed files with 5 additions and 48 deletions

1
TODO
View file

@ -60,4 +60,5 @@ rc6->rc7 changelog:
- BUGFIX: Catching DHT exception in case there is a problem
- BUGFIX: Removed build dependency on Python
- BUGFIX: Fixed a bug in children update when changing files priorities
- BUGFIX: Pause/Start All now affect all tabs, not only the current one
- I18N: Updated Turkish translation

View file

@ -990,30 +990,8 @@ void GUI::togglePausedState(QString hash) {
// Pause All Downloads in DL list
void GUI::on_actionPause_All_triggered() {
bool change = false;
bool inDownloadList = true;
bool hidden = false;
switch(getCurrentTabIndex()) {
case -1:
hidden = true;
inDownloadList = false;
break;
case 0:
break;
case 1:
inDownloadList = false;
break;
default:
return;
}
QStringList DL_hashes;
QStringList F_hashes;
if(hidden || inDownloadList) {
DL_hashes = BTSession->getUnfinishedTorrents();
}
if(hidden || !inDownloadList) {
F_hashes = BTSession->getFinishedTorrents();
}
QStringList DL_hashes = BTSession->getUnfinishedTorrents();
QStringList F_hashes = BTSession->getFinishedTorrents();
QString hash;
foreach(hash, DL_hashes) {
if(BTSession->pauseTorrent(hash)){
@ -1059,30 +1037,8 @@ void GUI::on_actionPause_triggered() {
// Resume All Downloads in DL list
void GUI::on_actionStart_All_triggered() {
bool change = false;
bool inDownloadList = true;
bool hidden = false;
switch(getCurrentTabIndex()) {
case -1:
hidden = true;
inDownloadList = false;
break;
case 0:
break;
case 1:
inDownloadList = false;
break;
default:
return;
}
QStringList DL_hashes;
QStringList F_hashes;
if(hidden || inDownloadList) {
DL_hashes = BTSession->getUnfinishedTorrents();
}
if(hidden || !inDownloadList) {
F_hashes = BTSession->getFinishedTorrents();
}
QStringList DL_hashes = BTSession->getUnfinishedTorrents();
QStringList F_hashes = BTSession->getFinishedTorrents();
QString hash;
foreach(hash, DL_hashes) {
if(BTSession->resumeTorrent(hash)){