summaryrefslogtreecommitdiffstats
path: root/logic/tasks
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2015-07-21 02:38:15 +0200
committerPetr Mrázek <peterix@gmail.com>2015-07-21 02:38:15 +0200
commit61c5a67777a6f7639c9d2f36b14f7a903bdfc5a0 (patch)
treece1e124a44f48d221d40c5534e438ef60491831c /logic/tasks
parent8e7caf4e25dc3f56877a504c45d157860215496b (diff)
downloadMultiMC-61c5a67777a6f7639c9d2f36b14f7a903bdfc5a0.tar
MultiMC-61c5a67777a6f7639c9d2f36b14f7a903bdfc5a0.tar.gz
MultiMC-61c5a67777a6f7639c9d2f36b14f7a903bdfc5a0.tar.lz
MultiMC-61c5a67777a6f7639c9d2f36b14f7a903bdfc5a0.tar.xz
MultiMC-61c5a67777a6f7639c9d2f36b14f7a903bdfc5a0.zip
GH-1053 explode launch task into many small steps, each a Task
Diffstat (limited to 'logic/tasks')
-rw-r--r--logic/tasks/Task.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/tasks/Task.h b/logic/tasks/Task.h
index 93ca620d..9362348a 100644
--- a/logic/tasks/Task.h
+++ b/logic/tasks/Task.h
@@ -52,7 +52,7 @@ signals:
public
slots:
virtual void start();
- virtual void abort() {};
+ virtual bool abort() { return false; };
protected:
virtual void executeTask() = 0;