make BaseQtVersion::qtCorePaths() non-static

simplifies the call sites.

Change-Id: I651644c641e9763a2c5f41a5644d8c2cf44469fb
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Oswald Buddenhagen
2017-01-20 20:39:38 +01:00
parent 16a2db585f
commit 60fa441959
8 changed files with 12 additions and 11 deletions

View File

@@ -139,7 +139,7 @@ void QnxQtVersion::fromMap(const QVariantMap &map)
QList<ProjectExplorer::Abi> QnxQtVersion::detectQtAbis() const
{
ensureMkSpecParsed();
return qtAbisFromLibrary(qtCorePaths(versionInfo(), qtVersionString()));
return qtAbisFromLibrary(qtCorePaths());
}
void QnxQtVersion::addToEnvironment(const ProjectExplorer::Kit *k, Utils::Environment &env) const