summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/projectfilewizardextension.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-05-10 15:19:38 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-05-10 15:21:41 +0200
commitddf4b613f3ebf3799f23f51a68c00649bfb84e95 (patch)
treec7fccf8ef1b66b8aef38283b333c8d731ef66cb5 /src/plugins/projectexplorer/projectfilewizardextension.cpp
parentbda50da7cd3bcf7ae1ea7839325bc361ed3a145d (diff)
downloadqt-creator-ddf4b613f3ebf3799f23f51a68c00649bfb84e95.tar.gz
Krazy fixes (spelling, single char strings, char constants).
Diffstat (limited to 'src/plugins/projectexplorer/projectfilewizardextension.cpp')
-rw-r--r--src/plugins/projectexplorer/projectfilewizardextension.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/projectfilewizardextension.cpp b/src/plugins/projectexplorer/projectfilewizardextension.cpp
index a8f9375fd8..fee4502948 100644
--- a/src/plugins/projectexplorer/projectfilewizardextension.cpp
+++ b/src/plugins/projectexplorer/projectfilewizardextension.cpp
@@ -250,7 +250,7 @@ static int findMatchingProject(const QList<ProjectEntry> &projects,
static QString generatedProjectFilePath(const QList<Core::GeneratedFile> &files)
{
- foreach (const Core::GeneratedFile file, files)
+ foreach (const Core::GeneratedFile &file, files)
if (file.attributes() & Core::GeneratedFile::OpenProjectAttribute)
return file.path();
return QString();