mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
chore: reformat
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
parent
779f70057b
commit
91ba4cf75e
603 changed files with 15840 additions and 16257 deletions
|
|
@ -31,7 +31,7 @@ class BasicTask_MultiStep : public Task {
|
|||
private:
|
||||
auto isMultiStep() const -> bool override { return true; }
|
||||
|
||||
void executeTask() override {}
|
||||
void executeTask() override {}
|
||||
};
|
||||
|
||||
class BigConcurrentTask : public ConcurrentTask {
|
||||
|
|
@ -66,7 +66,10 @@ class BigConcurrentTaskThread : public QThread {
|
|||
}
|
||||
|
||||
connect(&big_task, &Task::finished, this, &QThread::quit);
|
||||
connect(&m_deadline, &QTimer::timeout, this, [&] { passed_the_deadline = true; quit(); });
|
||||
connect(&m_deadline, &QTimer::timeout, this, [&] {
|
||||
passed_the_deadline = true;
|
||||
quit();
|
||||
});
|
||||
|
||||
m_deadline.start();
|
||||
big_task.run();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue