diff options
author | timoreo <contact@timoreo.fr> | 2022-07-28 09:43:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-28 09:43:39 +0200 |
commit | 74120fe1f3b072b78298dce68aedb397efb522a2 (patch) | |
tree | e721957e8f9f34a22a79851126bd27210f602fc9 /launcher/modplatform/flame/FileResolvingTask.h | |
parent | 336f1f4f5067cf45bc34031f376baafef9934e45 (diff) | |
parent | 1ce0f0e7a5059527cea3c6da84c19eb3599d2eff (diff) | |
download | PrismLauncher-74120fe1f3b072b78298dce68aedb397efb522a2.tar.gz PrismLauncher-74120fe1f3b072b78298dce68aedb397efb522a2.tar.bz2 PrismLauncher-74120fe1f3b072b78298dce68aedb397efb522a2.zip |
Merge pull request #699 from Scrumplex/resolve-ftb-mods-cf
Diffstat (limited to 'launcher/modplatform/flame/FileResolvingTask.h')
-rw-r--r-- | launcher/modplatform/flame/FileResolvingTask.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/launcher/modplatform/flame/FileResolvingTask.h b/launcher/modplatform/flame/FileResolvingTask.h index 87981f0a..f71b87ce 100644 --- a/launcher/modplatform/flame/FileResolvingTask.h +++ b/launcher/modplatform/flame/FileResolvingTask.h @@ -13,6 +13,9 @@ public: explicit FileResolvingTask(const shared_qobject_ptr<QNetworkAccessManager>& network, Flame::Manifest &toProcess); virtual ~FileResolvingTask() {}; + bool canAbort() const override { return true; } + bool abort() override; + const Flame::Manifest &getResults() const { return m_toProcess; |