diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-04-29 02:24:00 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-04-29 02:24:00 +0200 |
commit | e1465f4848d003cab3d3d1288c1a0f3b945083ee (patch) | |
tree | 6721fbaac70aa39cb0f0dd75b75e8e6f87d42743 /api/logic/net/Download.h | |
parent | 243f7e4fb4d58fa530404930566f83d1dc481588 (diff) | |
download | MultiMC-e1465f4848d003cab3d3d1288c1a0f3b945083ee.tar MultiMC-e1465f4848d003cab3d3d1288c1a0f3b945083ee.tar.gz MultiMC-e1465f4848d003cab3d3d1288c1a0f3b945083ee.tar.lz MultiMC-e1465f4848d003cab3d3d1288c1a0f3b945083ee.tar.xz MultiMC-e1465f4848d003cab3d3d1288c1a0f3b945083ee.zip |
NOISSUE refactor NetAction to be based on Task
Still missing some things, this is part 1.
Diffstat (limited to 'api/logic/net/Download.h')
-rw-r--r-- | api/logic/net/Download.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/logic/net/Download.h b/api/logic/net/Download.h index 3347dc96..31e51792 100644 --- a/api/logic/net/Download.h +++ b/api/logic/net/Download.h @@ -50,7 +50,7 @@ public: /* methods */ } void addValidator(Validator * v); bool abort() override; - bool canAbort() override; + bool canAbort() const override; private: /* methods */ bool handleRedirect(); @@ -62,7 +62,7 @@ protected slots: void downloadReadyRead() override; public slots: - void start() override; + void executeTask() override; private: /* data */ // FIXME: remove this, it has no business being here. |