aboutsummaryrefslogtreecommitdiff
path: root/launcher/InstanceCopyTask.cpp
diff options
context:
space:
mode:
authorRachel Powers <508861+Ryex@users.noreply.github.com>2023-02-22 17:40:07 -0700
committerRachel Powers <508861+Ryex@users.noreply.github.com>2023-03-20 14:56:33 -0700
commitae289c923c4f896dca7e6696eef7ca35b10be9bf (patch)
tree142b53b46aa56b1ae7a2b236abd1088c7ac8a6f7 /launcher/InstanceCopyTask.cpp
parente0ef86340f72ce508034815f1c5f8c695d31140d (diff)
downloadPrismLauncher-ae289c923c4f896dca7e6696eef7ca35b10be9bf.tar.gz
PrismLauncher-ae289c923c4f896dca7e6696eef7ca35b10be9bf.tar.bz2
PrismLauncher-ae289c923c4f896dca7e6696eef7ca35b10be9bf.zip
fix: clean up initial review comments (flowin)
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/InstanceCopyTask.cpp')
-rw-r--r--launcher/InstanceCopyTask.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/InstanceCopyTask.cpp b/launcher/InstanceCopyTask.cpp
index e0a4de0b..5ef7a7fd 100644
--- a/launcher/InstanceCopyTask.cpp
+++ b/launcher/InstanceCopyTask.cpp
@@ -72,14 +72,14 @@ void InstanceCopyTask::executeTask()
QEventLoop loop;
bool got_priv_results = false;
- connect(&folderLink, &FS::create_link::finishedPrivlaged, this, [&](bool gotResults){
+ connect(&folderLink, &FS::create_link::finishedPrivileged, this, [&](bool gotResults){
if (!gotResults) {
- qDebug() << "Privlaged run exited without results!";
+ qDebug() << "Privileged run exited without results!";
}
got_priv_results = gotResults;
loop.quit();
});
- folderLink.runPrivlaged();
+ folderLink.runPrivileged();
loop.exec(); // wait for the finished signal