feat(ui): adapt SequentialTask to nested SequentialTasks

This commit is contained in:
flow 2022-04-13 19:23:12 -03:00 committed by flow
parent c86c719e1a
commit eaa5ce4467
No known key found for this signature in database
GPG key ID: 8D0F221F0A59F469
4 changed files with 15 additions and 12 deletions

View file

@ -32,13 +32,10 @@ slots:
void subTaskStatus(const QString &msg);
void subTaskProgress(qint64 current, qint64 total);
signals:
void stepStatus(QString status);
protected:
void setStepStatus(QString status) { m_step_status = status; emit stepStatus(status); };
private:
void setStepStatus(QString status) { m_step_status = status; };
private:
protected:
QString m_name;
QString m_step_status;