diff options
author | Petr Mrázek <peterix@gmail.com> | 2018-06-28 21:34:56 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2018-06-28 21:34:56 +0200 |
commit | b5f636b3d57a63f634c4efe5a4ccd9a91f53df04 (patch) | |
tree | e251a4725feefd93d99ebc62b150bce2a60ecda2 /api/logic/tasks | |
parent | 19bb50b872da2702b8e0b65f3f7b6b54c1c5b071 (diff) | |
download | MultiMC-b5f636b3d57a63f634c4efe5a4ccd9a91f53df04.tar MultiMC-b5f636b3d57a63f634c4efe5a4ccd9a91f53df04.tar.gz MultiMC-b5f636b3d57a63f634c4efe5a4ccd9a91f53df04.tar.lz MultiMC-b5f636b3d57a63f634c4efe5a4ccd9a91f53df04.tar.xz MultiMC-b5f636b3d57a63f634c4efe5a4ccd9a91f53df04.zip |
NOISSUE do not keep downloads in memory, add (some) missing virtual dtors
Diffstat (limited to 'api/logic/tasks')
-rw-r--r-- | api/logic/tasks/SequentialTask.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/logic/tasks/SequentialTask.h b/api/logic/tasks/SequentialTask.h index 69031095..a2f3580f 100644 --- a/api/logic/tasks/SequentialTask.h +++ b/api/logic/tasks/SequentialTask.h @@ -12,6 +12,7 @@ class MULTIMC_LOGIC_EXPORT SequentialTask : public Task Q_OBJECT public: explicit SequentialTask(QObject *parent = 0); + virtual ~SequentialTask() {}; void addTask(std::shared_ptr<Task> task); |