aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform/technic/SingleZipPackInstallTask.cpp
diff options
context:
space:
mode:
authorRachel Powers <508861+Ryex@users.noreply.github.com>2023-06-30 23:50:13 -0700
committerRachel Powers <508861+Ryex@users.noreply.github.com>2023-07-01 17:03:12 -0700
commit98d6904e4a84836c1b9ec662b0b8a49d5282e27b (patch)
tree447c16c3cf99ad323160c096bcfc18141927a21d /launcher/modplatform/technic/SingleZipPackInstallTask.cpp
parentd7d2d9f6123618273f753fd07263c807112031d2 (diff)
downloadPrismLauncher-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.cpp2
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();
}