Skip to content

Commit

Permalink
- improved some asserts for progress checking
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Dumez committed Aug 19, 2007
1 parent 7030f85 commit 2bf0aba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/FinishedTorrents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ void FinishedTorrents::updateFinishedList(){
continue;
}
if(h.is_paused()) continue;
Q_ASSERT(torrentStatus.progress <= 1.);
Q_ASSERT(torrentStatus.progress <= 1. && torrentStatus.progress >= 0.);
if(torrentStatus.state == torrent_status::downloading || (torrentStatus.state != torrent_status::checking_files && torrentStatus.state != torrent_status::queued_for_checking && torrentStatus.progress < 1.)) {
// What are you doing here? go back to download tab!
qDebug("Info: a torrent was moved from finished to download tab");
Expand Down
8 changes: 4 additions & 4 deletions src/GUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ void GUI::updateDlList(bool force){
if(BTSession->getTorrentsToPauseAfterChecking().indexOf(fileHash) == -1){
DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/time.png")), Qt::DecorationRole);
setRowColor(row, "grey");
Q_ASSERT(torrentStatus.progress <= 1.);
Q_ASSERT(torrentStatus.progress <= 1. && torrentStatus.progress >= 0.);
DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress));
}
break;
Expand All @@ -593,7 +593,7 @@ void GUI::updateDlList(bool force){
DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/connecting.png")), Qt::DecorationRole);
setRowColor(row, "grey");
}
Q_ASSERT(torrentStatus.progress <= 1.);
Q_ASSERT(torrentStatus.progress <= 1. && torrentStatus.progress >= 0.);
DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress));
DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)torrentStatus.download_payload_rate));
DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)torrentStatus.upload_payload_rate));
Expand All @@ -610,7 +610,7 @@ void GUI::updateDlList(bool force){
DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1));
setRowColor(row, "black");
}
Q_ASSERT(torrentStatus.progress <= 1.);
Q_ASSERT(torrentStatus.progress <= 1. && torrentStatus.progress >= 0.);
DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress));
DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)torrentStatus.download_payload_rate));
DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)torrentStatus.upload_payload_rate));
Expand Down Expand Up @@ -1633,7 +1633,7 @@ void GUI::torrentChecked(QString hash){
DLListModel->setData(DLListModel->index(row, NAME), QIcon(":/Icons/skin/paused.png"), Qt::DecorationRole);
setRowColor(row, "red");
// Update progress in download list
Q_ASSERT(torrentStatus.progress <= 1.);
Q_ASSERT(torrentStatus.progress <= 1. && torrentStatus.progress >= 0.);
DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress));
// Delayed Sorting
sortProgressColumnDelayed();
Expand Down

0 comments on commit 2bf0aba

Please sign in to comment.