FEATURE: Added "Amount downloaded/left" columns to transfer list

Fix bug in column display menu
This commit is contained in:
Christophe Dumez
2010-11-16 17:43:54 +00:00
parent 3144bfebc7
commit a640b08414
7 changed files with 21 additions and 3 deletions

View File

@@ -146,6 +146,10 @@ size_type QTorrentHandle::total_wanted_done() const {
return torrent_handle::status().total_wanted_done;
}
size_type QTorrentHandle::total_wanted() const {
return torrent_handle::status().total_wanted;
}
float QTorrentHandle::download_payload_rate() const {
return torrent_handle::status().download_payload_rate;
}