diff options
Diffstat (limited to 'src/DownloadManager.cpp')
| -rw-r--r-- | src/DownloadManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DownloadManager.cpp b/src/DownloadManager.cpp index eb9832b..9f59010 100644 --- a/src/DownloadManager.cpp +++ b/src/DownloadManager.cpp @@ -119,7 +119,7 @@ void DownloadManager::downloadProgress(qint64 bytesIn, qint64 bytesTotal) if (debug) qDebug() << "Download progress of " << currentDownload->url().toString() << ": " << bytesIn << "/" << bytesTotal; qint64 tmp = ((bytesIn * 100) / bytesTotal); - emit updateProgress((int)tmp); + emit updateProgress(currentDownload->url().toString(), (int)tmp); } // ---------------------------------------------------------------------------------------- // This slot listens to the finished() which is emmited |
