aboutsummaryrefslogtreecommitdiff
path: root/launcher/tasks
diff options
context:
space:
mode:
authorseth <getchoo@tuta.io>2023-07-26 16:20:30 -0400
committerseth <getchoo@tuta.io>2023-07-26 16:20:30 -0400
commitaf59c4171344d6727c8d67205cc02406729250a3 (patch)
tree9b1ca53663f128a71656c889a8d747e1fa9ce3a4 /launcher/tasks
parenta0944dab7a8fff9b5d9c2c8d35cc55349c93a3cd (diff)
downloadPrismLauncher-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.cpp2
-rw-r--r--launcher/tasks/Task.h2
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);