diff options
Diffstat (limited to 'launcher/modplatform/flame/FileResolvingTask.h')
-rw-r--r-- | launcher/modplatform/flame/FileResolvingTask.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/launcher/modplatform/flame/FileResolvingTask.h b/launcher/modplatform/flame/FileResolvingTask.h index 78a38fcb..5e5adcd7 100644 --- a/launcher/modplatform/flame/FileResolvingTask.h +++ b/launcher/modplatform/flame/FileResolvingTask.h @@ -10,7 +10,7 @@ class FileResolvingTask : public Task { Q_OBJECT public: - explicit FileResolvingTask(Flame::Manifest &toProcess); + explicit FileResolvingTask(shared_qobject_ptr<QNetworkAccessManager> network, Flame::Manifest &toProcess); virtual ~FileResolvingTask() {}; const Flame::Manifest &getResults() const @@ -25,8 +25,9 @@ protected slots: void netJobFinished(); private: /* data */ + shared_qobject_ptr<QNetworkAccessManager> m_network; Flame::Manifest m_toProcess; QVector<QByteArray> results; - NetJobPtr m_dljob; + NetJob::Ptr m_dljob; }; } |