forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.6'
Conflicts: src/plugins/clangcodemodel/clangeditordocumentprocessor.cpp Change-Id: I4c619efd7c1060ffd759df44a03a111269d3478d
This commit is contained in:
@@ -450,9 +450,9 @@ KitInformation::ItemList CMakeGeneratorKitInformation::toUserOutput(const Kit *k
|
||||
} else {
|
||||
message = tr("Generator: %1<br>Extra generator: %2").arg(info.generator).arg(info.extraGenerator);
|
||||
if (!info.platform.isEmpty())
|
||||
message += tr("<br>Platform: %1").arg(info.platform);
|
||||
message += "<br/>" + tr("Platform: %1").arg(info.platform);
|
||||
if (!info.toolset.isEmpty())
|
||||
message += tr("<br>Toolset: %1").arg(info.toolset);
|
||||
message += "<br/>" + tr("Toolset: %1").arg(info.toolset);
|
||||
}
|
||||
return ItemList() << qMakePair(tr("CMake Generator"), message);
|
||||
}
|
||||
|
||||
@@ -115,7 +115,7 @@ void CMakeTargetNode::setTargetInformation(const QList<Utils::FileName> &artifac
|
||||
m_tooltip += QCoreApplication::translate("CMakeTargetNode", "No build artifacts");
|
||||
} else {
|
||||
const QStringList tmp = Utils::transform(artifacts, &Utils::FileName::toUserOutput);
|
||||
m_tooltip += QCoreApplication::translate("CMakeTargetNode", "Build artifacts:<br>")
|
||||
m_tooltip += QCoreApplication::translate("CMakeTargetNode", "Build artifacts:") + "<br>"
|
||||
+ tmp.join("<br>");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user