diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-06-30 23:50:13 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-07-01 17:03:12 -0700 |
commit | 98d6904e4a84836c1b9ec662b0b8a49d5282e27b (patch) | |
tree | 447c16c3cf99ad323160c096bcfc18141927a21d /launcher/modplatform/technic/SingleZipPackInstallTask.cpp | |
parent | d7d2d9f6123618273f753fd07263c807112031d2 (diff) | |
download | PrismLauncher-98d6904e4a84836c1b9ec662b0b8a49d5282e27b.tar.gz PrismLauncher-98d6904e4a84836c1b9ec662b0b8a49d5282e27b.tar.bz2 PrismLauncher-98d6904e4a84836c1b9ec662b0b8a49d5282e27b.zip |
chore: fix propagate mispelling
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/modplatform/technic/SingleZipPackInstallTask.cpp')
-rw-r--r-- | launcher/modplatform/technic/SingleZipPackInstallTask.cpp | 2 |
1 files changed, 1 insertions, 1 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(); } |