diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-07-26 22:56:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 22:56:31 +0200 |
commit | d960effb994ba421c502d8d5e0a1bb4d46efd9a3 (patch) | |
tree | 9b1ca53663f128a71656c889a8d747e1fa9ce3a4 /launcher/tasks | |
parent | a0944dab7a8fff9b5d9c2c8d35cc55349c93a3cd (diff) | |
parent | af59c4171344d6727c8d67205cc02406729250a3 (diff) | |
download | PrismLauncher-d960effb994ba421c502d8d5e0a1bb4d46efd9a3.tar.gz PrismLauncher-d960effb994ba421c502d8d5e0a1bb4d46efd9a3.tar.bz2 PrismLauncher-d960effb994ba421c502d8d5e0a1bb4d46efd9a3.zip |
Merge pull request #1447 from getchoo/typomoment
fix: typo in task.h
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); |