aboutsummaryrefslogtreecommitdiff
path: root/launcher/tasks
diff options
context:
space:
mode:
authorRachel Powers <508861+Ryex@users.noreply.github.com>2023-06-30 23:50:13 -0700
committerRachel Powers <508861+Ryex@users.noreply.github.com>2023-07-01 17:03:12 -0700
commit98d6904e4a84836c1b9ec662b0b8a49d5282e27b (patch)
tree447c16c3cf99ad323160c096bcfc18141927a21d /launcher/tasks
parentd7d2d9f6123618273f753fd07263c807112031d2 (diff)
downloadPrismLauncher-98d6904e4a84836c1b9ec662b0b8a49d5282e27b.tar.gz
PrismLauncher-98d6904e4a84836c1b9ec662b0b8a49d5282e27b.tar.bz2
PrismLauncher-98d6904e4a84836c1b9ec662b0b8a49d5282e27b.zip
chore: fix propagate mispelling
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
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 d3bcc84f..de0884c5 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);