diff options
| author | Jonathan Bauer | 2011-03-05 20:42:59 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2011-03-05 20:42:59 +0100 |
| commit | b50c681d6fac718f65abf58057889fcbe9b6aa10 (patch) | |
| tree | ab6734b95f2710f50a5a793630a8c4a169cd3b43 /src/DownloadManager.cpp | |
| parent | URL parsing now works with CommandLineOptions. Incomplete... (diff) | |
| download | fbgui-b50c681d6fac718f65abf58057889fcbe9b6aa10.tar.gz fbgui-b50c681d6fac718f65abf58057889fcbe9b6aa10.tar.xz fbgui-b50c681d6fac718f65abf58057889fcbe9b6aa10.zip | |
help fixed, misc cleanups...
Diffstat (limited to 'src/DownloadManager.cpp')
| -rw-r--r-- | src/DownloadManager.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/DownloadManager.cpp b/src/DownloadManager.cpp index dc2502f..5bb5387 100644 --- a/src/DownloadManager.cpp +++ b/src/DownloadManager.cpp @@ -29,7 +29,6 @@ void DownloadManager::startNextDownload() qDebug() << "Starting next download: " << dlQ.head().toString() << "(" << dlQ.size() << "in queue.)"; - // TODO: needed ? if (dlQ.isEmpty()) { qDebug() << "Download queue empty! Exiting..."; @@ -37,7 +36,6 @@ void DownloadManager::startNextDownload() } // Dequeue next URL to download. QUrl url = dlQ.dequeue(); - //qDebug() << "Dequeueing..." << url.toString(); // Extract the filename from the URL QString path = url.path(); QString basename = QFileInfo(path).fileName(); @@ -53,7 +51,6 @@ void DownloadManager::startNextDownload() startNextDownload(); return; } - qDebug() << "spot 1"; // Start the request for this URL. QNetworkRequest request(url); currentDownload = qnam->get(request); |
