diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-08-02 20:27:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 20:27:37 +0100 |
commit | afaf6f894c797fc0aa7eb329b661b533be469005 (patch) | |
tree | 0be358a0b616010aa5a022dbd3336a15cb791638 /launcher/modplatform/flame/FileResolvingTask.cpp | |
parent | 8b3c465a50e6be2a09c3968f1fd1e91b0428cbb0 (diff) | |
parent | ac36a2289faf331af17b51e2c9ebb78d005f9bfa (diff) | |
download | PrismLauncher-afaf6f894c797fc0aa7eb329b661b533be469005.tar.gz PrismLauncher-afaf6f894c797fc0aa7eb329b661b533be469005.tar.bz2 PrismLauncher-afaf6f894c797fc0aa7eb329b661b533be469005.zip |
Merge branch 'PrismLauncher:develop' into better-component-installation
Diffstat (limited to 'launcher/modplatform/flame/FileResolvingTask.cpp')
-rw-r--r-- | launcher/modplatform/flame/FileResolvingTask.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/modplatform/flame/FileResolvingTask.cpp b/launcher/modplatform/flame/FileResolvingTask.cpp index 34bd401d..ae168bbd 100644 --- a/launcher/modplatform/flame/FileResolvingTask.cpp +++ b/launcher/modplatform/flame/FileResolvingTask.cpp @@ -52,7 +52,7 @@ void Flame::FileResolvingTask::executeTask() stepProgress(*step_progress); emitFailed(reason); }); - connect(m_dljob.get(), &NetJob::stepProgress, this, &FileResolvingTask::propogateStepProgress); + connect(m_dljob.get(), &NetJob::stepProgress, this, &FileResolvingTask::propagateStepProgress); connect(m_dljob.get(), &NetJob::progress, this, [this, step_progress](qint64 current, qint64 total) { qDebug() << "Resolve slug progress" << current << total; step_progress->update(current, total); @@ -118,7 +118,7 @@ void Flame::FileResolvingTask::netJobFinished() stepProgress(*step_progress); emitFailed(reason); }); - connect(m_checkJob.get(), &NetJob::stepProgress, this, &FileResolvingTask::propogateStepProgress); + connect(m_checkJob.get(), &NetJob::stepProgress, this, &FileResolvingTask::propagateStepProgress); connect(m_checkJob.get(), &NetJob::progress, this, [this, step_progress](qint64 current, qint64 total) { qDebug() << "Resolve slug progress" << current << total; step_progress->update(current, total); @@ -195,7 +195,7 @@ void Flame::FileResolvingTask::modrinthCheckFinished() stepProgress(*step_progress); emitFailed(reason); }); - connect(m_slugJob.get(), &NetJob::stepProgress, this, &FileResolvingTask::propogateStepProgress); + connect(m_slugJob.get(), &NetJob::stepProgress, this, &FileResolvingTask::propagateStepProgress); connect(m_slugJob.get(), &NetJob::progress, this, [this, step_progress](qint64 current, qint64 total) { qDebug() << "Resolve slug progress" << current << total; step_progress->update(current, total); |