aboutsummaryrefslogtreecommitdiff
path: root/launcher/tasks
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-07-26 22:56:31 +0200
committerGitHub <noreply@github.com>2023-07-26 22:56:31 +0200
commitd960effb994ba421c502d8d5e0a1bb4d46efd9a3 (patch)
tree9b1ca53663f128a71656c889a8d747e1fa9ce3a4 /launcher/tasks
parenta0944dab7a8fff9b5d9c2c8d35cc55349c93a3cd (diff)
parentaf59c4171344d6727c8d67205cc02406729250a3 (diff)
downloadPrismLauncher-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.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);