diff options
| author | Jonathan Bauer | 2011-03-10 01:23:51 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2011-03-10 01:23:51 +0100 |
| commit | 9df74a4de07f08d070e503b5bf4432e7c8c90360 (patch) | |
| tree | 531cd3907959773931b5e21393b365cccb8de113 /src/DownloadManager.cpp | |
| parent | untested (diff) | |
| download | fbgui-9df74a4de07f08d070e503b5bf4432e7c8c90360.tar.gz fbgui-9df74a4de07f08d070e503b5bf4432e7c8c90360.tar.xz fbgui-9df74a4de07f08d070e503b5bf4432e7c8c90360.zip | |
callback function when download queue is empty
Diffstat (limited to 'src/DownloadManager.cpp')
| -rw-r--r-- | src/DownloadManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DownloadManager.cpp b/src/DownloadManager.cpp index 61be8d0..5c2b123 100644 --- a/src/DownloadManager.cpp +++ b/src/DownloadManager.cpp @@ -59,7 +59,7 @@ void DownloadManager::startNextDownload() if (dlQ.isEmpty()) { emit downloadQueueEmpty(); - if (debug) qDebug() << "Download manager ready."; + if (debug) qDebug() << "Download manager ready. (1)"; return; } if (debug) qDebug() << "Starting next download: " << dlQ.head().toString() @@ -145,7 +145,7 @@ void DownloadManager::downloadFinished() // If queue is empty, we are done. if (dlQ.isEmpty()){ emit downloadQueueEmpty(); - if (debug) qDebug() << "Download manager ready."; + if (debug) qDebug() << "Download manager ready. (2)"; return; } // Queue not empty: initialise next download. |
