diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-05-13 19:06:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-13 19:06:47 +0200 |
commit | d5c6a1b4d1e6d052e42366d19ffa0047168e030d (patch) | |
tree | 8ba9746a188c39003213839825552543e3f1a48f /launcher/launch/steps | |
parent | c5aff7cc1ef43a1326bd3ce0c83e29669e2ff43f (diff) | |
parent | 6b6d6a01dc9cf05715f01e3a549740b169ef9ae3 (diff) | |
download | PrismLauncher-d5c6a1b4d1e6d052e42366d19ffa0047168e030d.tar.gz PrismLauncher-d5c6a1b4d1e6d052e42366d19ffa0047168e030d.tar.bz2 PrismLauncher-d5c6a1b4d1e6d052e42366d19ffa0047168e030d.zip |
Merge pull request #1007 from Ryex/fix/network_and_signals
Diffstat (limited to 'launcher/launch/steps')
-rw-r--r-- | launcher/launch/steps/Update.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/launch/steps/Update.cpp b/launcher/launch/steps/Update.cpp index c8e576a5..77c8a18e 100644 --- a/launcher/launch/steps/Update.cpp +++ b/launcher/launch/steps/Update.cpp @@ -26,7 +26,7 @@ void Update::executeTask() m_updateTask.reset(m_parent->instance()->createUpdateTask(m_mode)); if(m_updateTask) { - connect(m_updateTask.get(), SIGNAL(finished()), this, SLOT(updateFinished())); + connect(m_updateTask.get(), &Task::finished, this, &Update::updateFinished); connect(m_updateTask.get(), &Task::progress, this, &Update::setProgress); connect(m_updateTask.get(), &Task::stepProgress, this, &Update::propogateStepProgress); connect(m_updateTask.get(), &Task::status, this, &Update::setStatus); |