From 1cc74effde4cbcd9ee1d7e88143d9d826901cf0e Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Thu, 24 Feb 2011 17:05:26 +0100 Subject: [PATCH] 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 --- src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp b/src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp index d7e5c4342dd..7381b9878b0 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp +++ b/src/plugins/qt4projectmanager/qt-s60/s60projectchecker.cpp @@ -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 "