diff options
| author | Niklas Goby | 2011-03-10 11:58:48 +0100 |
|---|---|---|
| committer | Niklas Goby | 2011-03-10 11:58:48 +0100 |
| commit | 1a72d2abc96a140ce99c16e14edf7db9278f6011 (patch) | |
| tree | 63777808e548691913306dff67a5da0547950a8d /src/DownloadManager.cpp | |
| parent | added a test getSysInfo("all") function (diff) | |
| parent | callback function when download queue is empty (diff) | |
| download | fbgui-1a72d2abc96a140ce99c16e14edf7db9278f6011.tar.gz fbgui-1a72d2abc96a140ce99c16e14edf7db9278f6011.tar.xz fbgui-1a72d2abc96a140ce99c16e14edf7db9278f6011.zip | |
Merge branch 'master' of git.openslx.org:lsfks/master-teamprojekt/fbgui
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. |
