ProjectExplorer: Consistently use HeaderPaths

Use HeaderPaths over QList<HeaderPath>.

Change-Id: I8f78b0a44e0160f1a2e7a78d9db4d04fcaa22f82
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
Tobias Hunger
2018-09-13 12:19:07 +02:00
parent 570fe88970
commit 11245564da
12 changed files with 47 additions and 46 deletions

View File

@@ -102,9 +102,9 @@ ToolChain::SystemHeaderPathsRunner NimToolChain::createSystemHeaderPathsRunner()
return ToolChain::SystemHeaderPathsRunner();
}
QList<HeaderPath> NimToolChain::systemHeaderPaths(const QStringList &, const FileName &) const
HeaderPaths NimToolChain::systemHeaderPaths(const QStringList &, const FileName &) const
{
return QList<HeaderPath>();
return {};
}
void NimToolChain::addToEnvironment(Environment &env) const