summaryrefslogtreecommitdiffstats
path: root/src/DownloadManager.cpp
diff options
context:
space:
mode:
authorJonathan Bauer2011-03-05 20:42:59 +0100
committerJonathan Bauer2011-03-05 20:42:59 +0100
commitb50c681d6fac718f65abf58057889fcbe9b6aa10 (patch)
treeab6734b95f2710f50a5a793630a8c4a169cd3b43 /src/DownloadManager.cpp
parentURL parsing now works with CommandLineOptions. Incomplete... (diff)
downloadfbgui-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.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);