diff options
author | seth <getchoo@tuta.io> | 2023-07-26 16:20:30 -0400 |
---|---|---|
committer | seth <getchoo@tuta.io> | 2023-07-26 16:20:30 -0400 |
commit | af59c4171344d6727c8d67205cc02406729250a3 (patch) | |
tree | 9b1ca53663f128a71656c889a8d747e1fa9ce3a4 /launcher/InstanceList.cpp | |
parent | a0944dab7a8fff9b5d9c2c8d35cc55349c93a3cd (diff) | |
download | PrismLauncher-af59c4171344d6727c8d67205cc02406729250a3.tar.gz PrismLauncher-af59c4171344d6727c8d67205cc02406729250a3.tar.bz2 PrismLauncher-af59c4171344d6727c8d67205cc02406729250a3.zip |
fix: typo in task.h
Signed-off-by: seth <getchoo@tuta.io>
Diffstat (limited to 'launcher/InstanceList.cpp')
-rw-r--r-- | launcher/InstanceList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/InstanceList.cpp b/launcher/InstanceList.cpp index b4c520cd..0485db19 100644 --- a/launcher/InstanceList.cpp +++ b/launcher/InstanceList.cpp @@ -799,7 +799,7 @@ class InstanceStaging : public Task { connect(child, &Task::status, this, &InstanceStaging::setStatus); connect(child, &Task::details, this, &InstanceStaging::setDetails); connect(child, &Task::progress, this, &InstanceStaging::setProgress); - connect(child, &Task::stepProgress, this, &InstanceStaging::propogateStepProgress); + connect(child, &Task::stepProgress, this, &InstanceStaging::propagateStepProgress); connect(&m_backoffTimer, &QTimer::timeout, this, &InstanceStaging::childSucceded); } |