forked from qt-creator/qt-creator
baseqtversion: commands are FilePathes
also renamed the qmlscene* qmlRuntime* Change-Id: Ifd522e21f5ce30aaa54060fdcebee2cd8b9463c4 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -66,14 +66,14 @@ static inline QString msgAppNotFound(const QString &id)
|
||||
static QString linguistBinary(const QtSupport::BaseQtVersion *qtVersion)
|
||||
{
|
||||
if (qtVersion)
|
||||
return qtVersion->linguistCommand().toString();
|
||||
return qtVersion->linguistFilePath().toString();
|
||||
return QLatin1String(Utils::HostOsInfo::isMacHost() ? "Linguist" : "linguist");
|
||||
}
|
||||
|
||||
static QString designerBinary(const QtSupport::BaseQtVersion *qtVersion)
|
||||
{
|
||||
if (qtVersion)
|
||||
return qtVersion->designerCommand().toString();
|
||||
return qtVersion->designerFilePath().toString();
|
||||
return QLatin1String(Utils::HostOsInfo::isMacHost() ? "Designer" : "designer");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user