summaryrefslogtreecommitdiffstats
path: root/src/DownloadManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/DownloadManager.cpp')
-rw-r--r--src/DownloadManager.cpp3
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);