diff options
author | flow <thiagodonato300@gmail.com> | 2022-04-07 18:41:32 -0300 |
---|---|---|
committer | flow <thiagodonato300@gmail.com> | 2022-04-07 18:41:32 -0300 |
commit | be2512bb4b05738011bfe165e890bcdd23ae8e92 (patch) | |
tree | f7f37c531ddffb6c35356493c25f26bf41225f93 | |
parent | c3f1c13a31ab92778ad89160dfc0e73358b29ae3 (diff) | |
download | PrismLauncher-be2512bb4b05738011bfe165e890bcdd23ae8e92.tar.gz PrismLauncher-be2512bb4b05738011bfe165e890bcdd23ae8e92.tar.bz2 PrismLauncher-be2512bb4b05738011bfe165e890bcdd23ae8e92.zip |
fix: issue with status of non-sequencial tasks
-rw-r--r-- | launcher/tasks/Task.h | 2 |
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; } |