summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2020-10-13 22:20:28 +0200
committerPetr Mrázek <peterix@gmail.com>2020-10-13 22:20:28 +0200
commit4197ae012874159a9a22f7f2ebb263aa938c2ac7 (patch)
treebeafcada1d77c2edd2f075f2454d037cff472cec
parenta7216ecca1b17bb372c51947be980654aa71fff4 (diff)
downloadMultiMC-4197ae012874159a9a22f7f2ebb263aa938c2ac7.tar
MultiMC-4197ae012874159a9a22f7f2ebb263aa938c2ac7.tar.gz
MultiMC-4197ae012874159a9a22f7f2ebb263aa938c2ac7.tar.lz
MultiMC-4197ae012874159a9a22f7f2ebb263aa938c2ac7.tar.xz
MultiMC-4197ae012874159a9a22f7f2ebb263aa938c2ac7.zip
NOISSUE remove obsolete TODO comment from SolderPackInstallTask
-rw-r--r--api/logic/modplatform/technic/SolderPackInstallTask.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/logic/modplatform/technic/SolderPackInstallTask.cpp b/api/logic/modplatform/technic/SolderPackInstallTask.cpp
index 1919c39e..abdc0c0c 100644
--- a/api/logic/modplatform/technic/SolderPackInstallTask.cpp
+++ b/api/logic/modplatform/technic/SolderPackInstallTask.cpp
@@ -185,7 +185,7 @@ void Technic::SolderPackInstallTask::extractFinished()
shared_qobject_ptr<Technic::TechnicPackProcessor> packProcessor = new Technic::TechnicPackProcessor();
connect(packProcessor.get(), &Technic::TechnicPackProcessor::succeeded, this, &Technic::SolderPackInstallTask::emitSucceeded);
connect(packProcessor.get(), &Technic::TechnicPackProcessor::failed, this, &Technic::SolderPackInstallTask::emitFailed);
- packProcessor->run(m_globalSettings, m_instName, m_instIcon, m_stagingPath, m_minecraftVersion, true); // TODO: pass the minecraft version down
+ packProcessor->run(m_globalSettings, m_instName, m_instIcon, m_stagingPath, m_minecraftVersion, true);
}
void Technic::SolderPackInstallTask::extractAborted()