Allow to change the save path of torrents after addition

This commit is contained in:
Christophe Dumez 2008-11-02 19:55:55 +00:00
commit b0a0abd764
6 changed files with 105 additions and 215 deletions

View file

@ -393,6 +393,11 @@ void QTorrentHandle::force_recheck() const {
h.force_recheck();
}
void QTorrentHandle::move_storage(QString new_path) const {
Q_ASSERT(h.is_valid());
h.move_storage(new_path.toUtf8().data());
}
//
// Operators
//