diff options
| author | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-27 00:05:59 +0300 |
|---|---|---|
| committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-27 00:05:59 +0300 |
| commit | 3c472fd7e0cbe517c63f41f8c02767e372e916a1 (patch) | |
| tree | 3ae2752ae0b5991401737b2402b47a9131c2e5c6 /launcher/modplatform/technic | |
| parent | 477b72ad33c29de097585ed415e1940cc25e2b34 (diff) | |
| parent | d960effb994ba421c502d8d5e0a1bb4d46efd9a3 (diff) | |
| download | PrismLauncher-3c472fd7e0cbe517c63f41f8c02767e372e916a1.tar.gz PrismLauncher-3c472fd7e0cbe517c63f41f8c02767e372e916a1.tar.bz2 PrismLauncher-3c472fd7e0cbe517c63f41f8c02767e372e916a1.zip | |
Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher into prism_export2
Diffstat (limited to 'launcher/modplatform/technic')
| -rw-r--r-- | launcher/modplatform/technic/SingleZipPackInstallTask.cpp | 2 | ||||
| -rw-r--r-- | launcher/modplatform/technic/SolderPackInstallTask.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/launcher/modplatform/technic/SingleZipPackInstallTask.cpp b/launcher/modplatform/technic/SingleZipPackInstallTask.cpp index f07ca24a..ab91c466 100644 --- a/launcher/modplatform/technic/SingleZipPackInstallTask.cpp +++ b/launcher/modplatform/technic/SingleZipPackInstallTask.cpp @@ -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(); } diff --git a/launcher/modplatform/technic/SolderPackInstallTask.cpp b/launcher/modplatform/technic/SolderPackInstallTask.cpp index 6a05d17a..cc1d261e 100644 --- a/launcher/modplatform/technic/SolderPackInstallTask.cpp +++ b/launcher/modplatform/technic/SolderPackInstallTask.cpp @@ -126,7 +126,7 @@ void Technic::SolderPackInstallTask::fileListSucceeded() connect(m_filesNetJob.get(), &NetJob::succeeded, this, &Technic::SolderPackInstallTask::downloadSucceeded); connect(m_filesNetJob.get(), &NetJob::progress, this, &Technic::SolderPackInstallTask::downloadProgressChanged); - connect(m_filesNetJob.get(), &NetJob::stepProgress, this, &Technic::SolderPackInstallTask::propogateStepProgress); + connect(m_filesNetJob.get(), &NetJob::stepProgress, this, &Technic::SolderPackInstallTask::propagateStepProgress); connect(m_filesNetJob.get(), &NetJob::failed, this, &Technic::SolderPackInstallTask::downloadFailed); connect(m_filesNetJob.get(), &NetJob::aborted, this, &Technic::SolderPackInstallTask::downloadAborted); m_filesNetJob->start(); |
