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/tasks | |
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/tasks')
-rw-r--r-- | launcher/tasks/Task.cpp | 2 | ||||
-rw-r--r-- | launcher/tasks/Task.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/launcher/tasks/Task.cpp b/launcher/tasks/Task.cpp index 29c55cd4..fd82ec00 100644 --- a/launcher/tasks/Task.cpp +++ b/launcher/tasks/Task.cpp @@ -161,7 +161,7 @@ void Task::emitSucceeded() emit finished(); } -void Task::propogateStepProgress(TaskStepProgress const& task_progress) +void Task::propagateStepProgress(TaskStepProgress const& task_progress) { emit stepProgress(task_progress); } diff --git a/launcher/tasks/Task.h b/launcher/tasks/Task.h index 6d8bbbb4..57177697 100644 --- a/launcher/tasks/Task.h +++ b/launcher/tasks/Task.h @@ -167,7 +167,7 @@ class Task : public QObject, public QRunnable { virtual void emitAborted(); virtual void emitFailed(QString reason = ""); - virtual void propogateStepProgress(TaskStepProgress const& task_progress); + virtual void propagateStepProgress(TaskStepProgress const& task_progress); public slots: void setStatus(const QString& status); |