summaryrefslogtreecommitdiffstats
path: root/logic/tasks/SequentialTask.h
diff options
context:
space:
mode:
Diffstat (limited to 'logic/tasks/SequentialTask.h')
-rw-r--r--logic/tasks/SequentialTask.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/logic/tasks/SequentialTask.h b/logic/tasks/SequentialTask.h
index c405dca3..f1fe9c72 100644
--- a/logic/tasks/SequentialTask.h
+++ b/logic/tasks/SequentialTask.h
@@ -11,9 +11,6 @@ class SequentialTask : public Task
public:
explicit SequentialTask(QObject *parent = 0);
- virtual QString getStatus() const;
- virtual void getProgress(qint64 &current, qint64 &total);
-
void addTask(std::shared_ptr<ProgressProvider> task);
protected:
@@ -24,7 +21,7 @@ slots:
void startNext();
void subTaskFailed(const QString &msg);
void subTaskStatus(const QString &msg);
- void subTaskProgress();
+ void subTaskProgress(qint64 current, qint64 total);
private:
QQueue<std::shared_ptr<ProgressProvider> > m_queue;