forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/master' into 9.0
Change-Id: Ib6902407c879a840b927be9a545cb7c5b26c9ff8
This commit is contained in:
@@ -123,7 +123,7 @@ static std::unique_ptr<QbsProductNode> buildProductNodeTree(const QJsonObject &p
|
||||
// Add "Generated Files" Node:
|
||||
auto genFiles = std::make_unique<VirtualFolderNode>(
|
||||
FilePath::fromString(prd.value("build-directory").toString()));
|
||||
genFiles->setDisplayName(Tr::tr("Generated files"));
|
||||
genFiles->setDisplayName(::QbsProjectManager::Tr::tr("Generated files"));
|
||||
setupGeneratedArtifacts(genFiles.get(), prd);
|
||||
result->addNode(std::move(genFiles));
|
||||
return result;
|
||||
|
||||
@@ -1735,7 +1735,7 @@ bool QtVersionPrivate::queryQMakeVariables(const FilePath &binary, const Environ
|
||||
error = &tmp;
|
||||
|
||||
if (!binary.isExecutableFile()) {
|
||||
*error = Tr::tr("qmake \"%1\" is not an executable.").arg(binary.displayName());
|
||||
*error = ::QtSupport::Tr::tr("qmake \"%1\" is not an executable.").arg(binary.displayName());
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user