forked from qt-creator/qt-creator
Use double quotes instead of single quotes as per our guidelines.
Change-Id: Ib608bb49e26781aef1914085a5d801fcdcd5eb56 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
This commit is contained in:
@@ -1415,17 +1415,17 @@ bool QmakeProject::supportsNoTargetPanel() const
|
||||
QString QmakeProject::disabledReasonForRunConfiguration(const QString &proFilePath)
|
||||
{
|
||||
if (!QFileInfo(proFilePath).exists())
|
||||
return tr("The .pro file '%1' does not exist.")
|
||||
return tr("The .pro file \"%1\" does not exist.")
|
||||
.arg(QFileInfo(proFilePath).fileName());
|
||||
|
||||
if (!m_rootProjectNode) // Shutting down
|
||||
return QString();
|
||||
|
||||
if (!m_rootProjectNode->findProFileFor(proFilePath))
|
||||
return tr("The .pro file '%1' is not part of the project.")
|
||||
return tr("The .pro file \"%1\" is not part of the project.")
|
||||
.arg(QFileInfo(proFilePath).fileName());
|
||||
|
||||
return tr("The .pro file '%1' could not be parsed.")
|
||||
return tr("The .pro file \"%1\" could not be parsed.")
|
||||
.arg(QFileInfo(proFilePath).fileName());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user