- Fix crash in torrent addition dialog when save path does not exist (closes #425227)

- Fix downloading from URL (broken in v1.5.0)
This commit is contained in:
Christophe Dumez 2009-09-07 11:48:31 +00:00
commit 37158a32ad
4 changed files with 19 additions and 5 deletions

View file

@ -1435,6 +1435,12 @@ void bittorrent::downloadFromUrl(QString url) {
downloader->downloadUrl(url);
}
void bittorrent::downloadFromURLList(const QStringList& urls) {
foreach(const QString &url, urls) {
downloadFromUrl(url);
}
}
void bittorrent::addMagnetSkipAddDlg(QString uri) {
addMagnetUri(uri, false);
}