From f293f4d7efc4b973c9fdec8eb6910766fa8f5c4c Mon Sep 17 00:00:00 2001
From: dt <qtc-commiter@nokia.com>
Date: Tue, 9 Dec 2008 14:33:09 +0100
Subject: [PATCH] Fixes:    Whitespace to make hjk happy.

---
 src/plugins/cmakeprojectmanager/cmakeproject.cpp | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/plugins/cmakeprojectmanager/cmakeproject.cpp b/src/plugins/cmakeprojectmanager/cmakeproject.cpp
index 9448b1b94df..581a92e9fbf 100644
--- a/src/plugins/cmakeprojectmanager/cmakeproject.cpp
+++ b/src/plugins/cmakeprojectmanager/cmakeproject.cpp
@@ -424,7 +424,7 @@ void CMakeCbpParser::parseTarget()
 
     if (attributes().hasAttribute("title"))
         m_target.title = attributes().value("title").toString();
-    while(!atEnd()) {
+    while (!atEnd()) {
         readNext();
         if (isEndElement()) {
             if (m_targetType || m_target.title == "all") {
@@ -449,7 +449,7 @@ void CMakeCbpParser::parseTargetOption()
         m_targetType = true;
     else if (attributes().hasAttribute("working_dir"))
         m_target.workingDirectory = attributes().value("working_dir").toString();
-    while(!atEnd()) {
+    while (!atEnd()) {
         readNext();
         if (isEndElement()) {
             return;
@@ -463,7 +463,7 @@ void CMakeCbpParser::parseTargetOption()
 
 void CMakeCbpParser::parseMakeCommand()
 {
-    while(!atEnd()) {
+    while (!atEnd()) {
         readNext();
         if (isEndElement()) {
             return;
@@ -481,7 +481,7 @@ void CMakeCbpParser::parseTargetBuild()
 {
     if (attributes().hasAttribute("command"))
         m_target.makeCommand = attributes().value("command").toString();
-    while(!atEnd()) {
+    while (!atEnd()) {
         readNext();
         if (isEndElement()) {
             return;
@@ -495,7 +495,7 @@ void CMakeCbpParser::parseTargetClean()
 {
     if (attributes().hasAttribute("command"))
         m_target.makeCleanCommand = attributes().value("command").toString();
-    while(!atEnd()) {
+    while (!atEnd()) {
         readNext();
         if (isEndElement()) {
             return;
-- 
GitLab