aboutsummaryrefslogtreecommitdiff
path: root/launcher/tasks
diff options
context:
space:
mode:
authorflow <thiagodonato300@gmail.com>2022-04-07 18:41:32 -0300
committerflow <thiagodonato300@gmail.com>2022-04-07 18:41:32 -0300
commitbe2512bb4b05738011bfe165e890bcdd23ae8e92 (patch)
treef7f37c531ddffb6c35356493c25f26bf41225f93 /launcher/tasks
parentc3f1c13a31ab92778ad89160dfc0e73358b29ae3 (diff)
downloadPrismLauncher-be2512bb4b05738011bfe165e890bcdd23ae8e92.tar.gz
PrismLauncher-be2512bb4b05738011bfe165e890bcdd23ae8e92.tar.bz2
PrismLauncher-be2512bb4b05738011bfe165e890bcdd23ae8e92.zip
fix: issue with status of non-sequencial tasks
Diffstat (limited to 'launcher/tasks')
-rw-r--r--launcher/tasks/Task.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/tasks/Task.h b/launcher/tasks/Task.h
index 47c249b3..344a024e 100644
--- a/launcher/tasks/Task.h
+++ b/launcher/tasks/Task.h
@@ -53,7 +53,7 @@ class Task : public QObject {
virtual bool canAbort() const { return false; }
QString getStatus() { return m_status; }
- virtual auto getStepStatus() const -> QString { return {}; }
+ virtual auto getStepStatus() const -> QString { return m_status; }
qint64 getProgress() { return m_progress; }
qint64 getTotalProgress() { return m_progressTotal; }