Symbian: Remove unnecessary warning on project setup

Remove warning on projects with names containing dashes. This is no longer an
issue.

The issue of warning when the project path containes special characters was already
fixed before.

Task-number: QTCREATORBUG-3631
This commit is contained in:
Tobias Hunger
2011-02-24 17:05:26 +01:00
parent 75f4b9cf25
commit 1cc74effde

View File

@@ -86,7 +86,7 @@ S60ProjectChecker::reportIssues(const QString &proFile, const QtVersion *version
"in the project path '%1'.").arg(projectPath),
QString(), -1, ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM));
}
if (projectName.contains(QRegExp("[^a-zA-Z0-9.]"))) {
if (projectName.contains(QRegExp("[^a-zA-Z0-9.-]"))) {
results.append(Task(Task::Warning,
QCoreApplication::translate("ProjectExplorer::Internal::S60ProjectChecker",
"The Symbian toolchain does not handle special "