summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/currentprojectfilter.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-02-01 12:43:56 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-02-01 12:43:56 +0100
commit2fd8b2d7ffa2ac032bfe3a17efe7d152c4cef14d (patch)
treed09291af8cbedb1b80fd8992429dc46af4766dba /src/plugins/projectexplorer/currentprojectfilter.cpp
parentd2235489e83d70648f26445426a521bb15bab579 (diff)
downloadqt-creator-2fd8b2d7ffa2ac032bfe3a17efe7d152c4cef14d.tar.gz
Fix some code scanning issues.
QString: Use QChar where appropriate.
Diffstat (limited to 'src/plugins/projectexplorer/currentprojectfilter.cpp')
-rw-r--r--src/plugins/projectexplorer/currentprojectfilter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/currentprojectfilter.cpp b/src/plugins/projectexplorer/currentprojectfilter.cpp
index c43eba56e0..b99b392bed 100644
--- a/src/plugins/projectexplorer/currentprojectfilter.cpp
+++ b/src/plugins/projectexplorer/currentprojectfilter.cpp
@@ -49,7 +49,7 @@ CurrentProjectFilter::CurrentProjectFilter(ProjectExplorerPlugin *pe)
connect(m_projectExplorer, SIGNAL(currentProjectChanged(ProjectExplorer::Project*)),
this, SLOT(currentProjectChanged(ProjectExplorer::Project*)));
- setShortcutString("p");
+ setShortcutString(QString(QLatin1Char('p')));
setIncludedByDefault(false);
}