diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-05-10 15:19:38 +0200 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-05-10 15:21:41 +0200 |
commit | ddf4b613f3ebf3799f23f51a68c00649bfb84e95 (patch) | |
tree | c7fccf8ef1b66b8aef38283b333c8d731ef66cb5 /src/plugins/projectexplorer/projectfilewizardextension.cpp | |
parent | bda50da7cd3bcf7ae1ea7839325bc361ed3a145d (diff) | |
download | qt-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.cpp | 2 |
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(); |