- Fixed downloadFromUrl() (still have to do some checking with the thread)

This commit is contained in:
Christophe Dumez 2007-03-08 17:00:12 +00:00
parent aa6f6161c3
commit 524540e63d
4 changed files with 14 additions and 0 deletions

View file

@ -672,6 +672,7 @@ QString bittorrent::getSavePath(const QString& hash){
// download the torrent file to a tmp location, then
// add it to download list
void bittorrent::downloadFromUrl(const QString& url){
emit aboutToDownloadFromUrl(url);
// Launch downloader thread
downloader->downloadUrl(url);
}