aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/nim/project/nimtoolchain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/nim/project/nimtoolchain.cpp')
-rw-r--r--src/plugins/nim/project/nimtoolchain.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/nim/project/nimtoolchain.cpp b/src/plugins/nim/project/nimtoolchain.cpp
index 6a922f9553..81a957c588 100644
--- a/src/plugins/nim/project/nimtoolchain.cpp
+++ b/src/plugins/nim/project/nimtoolchain.cpp
@@ -43,13 +43,13 @@ NimToolChain::NimToolChain()
: NimToolChain(Constants::C_NIMTOOLCHAIN_TYPEID)
{}
-NimToolChain::NimToolChain(Core::Id typeId)
+NimToolChain::NimToolChain(Utils::Id typeId)
: ToolChain(typeId)
, m_compilerCommand(FilePath())
, m_version(std::make_tuple(-1,-1,-1))
{
setLanguage(Constants::C_NIMLANGUAGE_ID);
- setTypeDisplayName(NimToolChainFactory::tr("Nim"));
+ setTypeDisplayName(tr("Nim"));
}
Abi NimToolChain::targetAbi() const
@@ -120,9 +120,9 @@ void NimToolChain::setCompilerCommand(const FilePath &compilerCommand)
parseVersion(compilerCommand, m_version);
}
-IOutputParser *NimToolChain::outputParser() const
+QList<Utils::OutputLineParser *> NimToolChain::createOutputParsers() const
{
- return nullptr;
+ return {};
}
std::unique_ptr<ProjectExplorer::ToolChainConfigWidget> NimToolChain::createConfigurationWidget()