- Allow to force rechecking torrents

This commit is contained in:
Christophe Dumez 2008-11-02 13:53:45 +00:00
parent 3282e1bcc9
commit 01bc15d3f4
9 changed files with 86 additions and 23 deletions

View file

@ -388,6 +388,11 @@ void QTorrentHandle::set_tracker_login(QString username, QString password) {
h.set_tracker_login(std::string(username.toUtf8().data()), std::string(password.toUtf8().data()));
}
void QTorrentHandle::force_recheck() const {
Q_ASSERT(h.is_valid());
h.force_recheck();
}
//
// Operators
//