fix: typo in task.h

Signed-off-by: seth <getchoo@tuta.io>
This commit is contained in:
seth 2023-07-26 16:20:30 -04:00
parent a0944dab7a
commit af59c41713
No known key found for this signature in database
GPG key ID: D31BD0D494BBEE86
19 changed files with 27 additions and 27 deletions

View file

@ -50,7 +50,7 @@ void Technic::SingleZipPackInstallTask::executeTask()
auto job = m_filesNetJob.get();
connect(job, &NetJob::succeeded, this, &Technic::SingleZipPackInstallTask::downloadSucceeded);
connect(job, &NetJob::progress, this, &Technic::SingleZipPackInstallTask::downloadProgressChanged);
connect(job, &NetJob::stepProgress, this, &Technic::SingleZipPackInstallTask::propogateStepProgress);
connect(job, &NetJob::stepProgress, this, &Technic::SingleZipPackInstallTask::propagateStepProgress);
connect(job, &NetJob::failed, this, &Technic::SingleZipPackInstallTask::downloadFailed);
m_filesNetJob->start();
}