diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-04-06 10:52:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-06 10:52:38 +0200 |
commit | fa870bc026b21aca7b3859cde8ba3f843a98e023 (patch) | |
tree | 43a768c16cea79a8bb2bebb4b13c1c0ba6d7cadb /launcher/ui/dialogs/ProgressDialog.h | |
parent | 99d569ed0e982291f167155a9eb86d1c6e659376 (diff) | |
parent | 9b8493c30499e06bbef7b96ff415f80c140c1a7f (diff) | |
download | PrismLauncher-fa870bc026b21aca7b3859cde8ba3f843a98e023.tar.gz PrismLauncher-fa870bc026b21aca7b3859cde8ba3f843a98e023.tar.bz2 PrismLauncher-fa870bc026b21aca7b3859cde8ba3f843a98e023.zip |
Merge pull request #380 from flowln/task-progress
Diffstat (limited to 'launcher/ui/dialogs/ProgressDialog.h')
-rw-r--r-- | launcher/ui/dialogs/ProgressDialog.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/launcher/ui/dialogs/ProgressDialog.h b/launcher/ui/dialogs/ProgressDialog.h index b28ad4fa..0b4b78a4 100644 --- a/launcher/ui/dialogs/ProgressDialog.h +++ b/launcher/ui/dialogs/ProgressDialog.h @@ -19,6 +19,7 @@ #include <memory> class Task; +class SequentialTask; namespace Ui { @@ -35,7 +36,7 @@ public: void updateSize(); - int execWithTask(Task *task); + int execWithTask(Task* task); int execWithTask(std::unique_ptr<Task> &&task); int execWithTask(std::unique_ptr<Task> &task); @@ -68,4 +69,6 @@ private: Ui::ProgressDialog *ui; Task *task; + + bool m_is_multi_step = false; }; |