Reuse existing string for new "builddir.level != sourdir.level" warning

* Revert this once string freeze is over!
This commit is contained in:
Tobias Hunger
2010-08-19 16:11:10 +02:00
parent 423686c0a9
commit 5b72808192

View File

@@ -673,8 +673,12 @@ QtVersion::reportIssues(const QString &proFile, const QString &buildDir)
results.append(ProjectExplorer::Task(ProjectExplorer::Task::Warning, msg, QString(), -1, results.append(ProjectExplorer::Task(ProjectExplorer::Task::Warning, msg, QString(), -1,
QLatin1String(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM))); QLatin1String(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM)));
} else if (tmpBuildDir.count(QChar('/')) != sourcePath.count(QChar('/'))) { } else if (tmpBuildDir.count(QChar('/')) != sourcePath.count(QChar('/'))) {
// FIXME: We currently are in string freeze, so I have to reuse some existing text!
// const QString msg = QCoreApplication::translate("Qt4ProjectManager::QtVersion",
// "The build directory needs to be at the same level as the source directory.");
const QString msg = QCoreApplication::translate("Qt4ProjectManager::QtVersion", const QString msg = QCoreApplication::translate("Qt4ProjectManager::QtVersion",
"The build directory needs to be at the same level as the source directory."); "Qmake does not support build directories below the source directory.");
results.append(ProjectExplorer::Task(ProjectExplorer::Task::Warning, msg, QString(), -1, results.append(ProjectExplorer::Task(ProjectExplorer::Task::Warning, msg, QString(), -1,
QLatin1String(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM))); QLatin1String(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM)));
} }