aboutsummaryrefslogtreecommitdiff
path: root/launcher/java/JavaInstallList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/java/JavaInstallList.cpp')
-rw-r--r--launcher/java/JavaInstallList.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/java/JavaInstallList.cpp b/launcher/java/JavaInstallList.cpp
index e2f0aa00..b29af857 100644
--- a/launcher/java/JavaInstallList.cpp
+++ b/launcher/java/JavaInstallList.cpp
@@ -67,7 +67,7 @@ void JavaInstallList::load()
if(m_status != Status::InProgress)
{
m_status = Status::InProgress;
- m_loadTask = new JavaListLoadTask(this);
+ m_loadTask.reset(new JavaListLoadTask(this));
m_loadTask->start();
}
}
@@ -167,7 +167,7 @@ void JavaListLoadTask::executeTask()
JavaUtils ju;
QList<QString> candidate_paths = ju.FindJavaPaths();
- m_job = new JavaCheckerJob("Java detection");
+ m_job.reset(new JavaCheckerJob("Java detection"));
connect(m_job.get(), &Task::finished, this, &JavaListLoadTask::javaCheckerFinished);
connect(m_job.get(), &Task::progress, this, &Task::setProgress);