Fix whitespace/coding style

This commit is contained in:
dt
2011-05-12 12:25:25 +02:00
parent 8e171e0be0
commit b4d38705a1
6 changed files with 8 additions and 8 deletions

View File

@@ -435,7 +435,7 @@ QList<BaseQtVersion *> QtVersionManager::versions() const
QList<BaseQtVersion *> QtVersionManager::validVersions() const
{
QList<BaseQtVersion *> results;
foreach(BaseQtVersion *v, m_versions) {
foreach (BaseQtVersion *v, m_versions) {
if (v->isValid())
results.append(v);
}
@@ -585,7 +585,7 @@ QString QtVersionManager::findQMakeBinaryFromMakefile(const QString &makefile)
BaseQtVersion *QtVersionManager::qtVersionForQMakeBinary(const QString &qmakePath)
{
foreach(BaseQtVersion *version, versions()) {
foreach (BaseQtVersion *version, versions()) {
if (version->qmakeCommand() == qmakePath) {
return version;
break;