Fix download progress (bars)

This commit is contained in:
Petr Mrázek
2013-09-10 00:29:25 +02:00
parent 2ae60038aa
commit 91a3e650e9
2 changed files with 21 additions and 1 deletions

View File

@@ -51,6 +51,9 @@ private slots:
private:
QString m_job_name;
QList<DownloadPtr> downloads;
QList<QPair<qint64, qint64>> parts_progress;
qint64 current_progress = 0;
qint64 total_progress = 0;
int num_succeeded = 0;
int num_failed = 0;
};