diff options
author | flow <flowlnlnln@gmail.com> | 2022-08-21 09:26:27 -0300 |
---|---|---|
committer | flow <flowlnlnln@gmail.com> | 2022-09-20 18:36:10 -0300 |
commit | be8c6f218cfe3acc31335305bb40284f8f6cb582 (patch) | |
tree | a1a723390371a190b248ca558058f0d5f6f4ab34 /launcher/InstanceList.cpp | |
parent | 9eb35ea7c8b30c4bfa02e2ba218671902d92ff21 (diff) | |
download | PrismLauncher-be8c6f218cfe3acc31335305bb40284f8f6cb582.tar.gz PrismLauncher-be8c6f218cfe3acc31335305bb40284f8f6cb582.tar.bz2 PrismLauncher-be8c6f218cfe3acc31335305bb40284f8f6cb582.zip |
refactor: setAbortStatus -> setAbortable
Signed-off-by: flow <flowlnlnln@gmail.com>
Diffstat (limited to 'launcher/InstanceList.cpp')
-rw-r--r-- | launcher/InstanceList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/InstanceList.cpp b/launcher/InstanceList.cpp index a4b8d8aa..a414e0d5 100644 --- a/launcher/InstanceList.cpp +++ b/launcher/InstanceList.cpp @@ -785,7 +785,7 @@ class InstanceStaging : public Task { connect(child, &Task::succeeded, this, &InstanceStaging::childSucceded); connect(child, &Task::failed, this, &InstanceStaging::childFailed); connect(child, &Task::aborted, this, &InstanceStaging::childAborted); - connect(child, &Task::abortStatusChanged, this, &InstanceStaging::setAbortStatus); + connect(child, &Task::abortStatusChanged, this, &InstanceStaging::setAbortable); connect(child, &Task::status, this, &InstanceStaging::setStatus); connect(child, &Task::progress, this, &InstanceStaging::setProgress); connect(&m_backoffTimer, &QTimer::timeout, this, &InstanceStaging::childSucceded); |