diff options
Diffstat (limited to 'launcher/tasks/SequentialTask.h')
-rw-r--r-- | launcher/tasks/SequentialTask.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/tasks/SequentialTask.h b/launcher/tasks/SequentialTask.h index e3091176..027744f3 100644 --- a/launcher/tasks/SequentialTask.h +++ b/launcher/tasks/SequentialTask.h @@ -12,7 +12,7 @@ public: explicit SequentialTask(QObject *parent = 0); virtual ~SequentialTask() {}; - void addTask(shared_qobject_ptr<Task> task); + void addTask(Task::Ptr task); protected: void executeTask(); @@ -25,6 +25,6 @@ slots: void subTaskProgress(qint64 current, qint64 total); private: - QQueue<shared_qobject_ptr<Task> > m_queue; + QQueue<Task::Ptr > m_queue; int m_currentIndex; }; |