From fae36d9ffd148aaa1a601dcfa9334dae210689b8 Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Thu, 7 May 2009 10:04:42 +0200
Subject: [PATCH] debugger: code cosmetics

---
 src/plugins/debugger/cdb/cdbsymbolgroupcontext.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/plugins/debugger/cdb/cdbsymbolgroupcontext.cpp b/src/plugins/debugger/cdb/cdbsymbolgroupcontext.cpp
index 47035c5ec4d..f3bf01df256 100644
--- a/src/plugins/debugger/cdb/cdbsymbolgroupcontext.cpp
+++ b/src/plugins/debugger/cdb/cdbsymbolgroupcontext.cpp
@@ -97,7 +97,7 @@ static inline QString getSymbolString(IDebugSymbolGroup2 *sg,
 }
 
 namespace Debugger {
-    namespace Internal {
+namespace Internal {
 
 static inline CdbSymbolGroupContext::SymbolState getSymbolState(const DEBUG_SYMBOL_PARAMETERS &p)
 {
@@ -125,7 +125,7 @@ CdbSymbolGroupContext *CdbSymbolGroupContext::create(const QString &prefix,
                                                      CIDebugSymbolGroup *symbolGroup,
                                                      QString *errorMessage)
 {
-    CdbSymbolGroupContext *rc= new CdbSymbolGroupContext(prefix, symbolGroup);
+    CdbSymbolGroupContext *rc = new CdbSymbolGroupContext(prefix, symbolGroup);
     if (!rc->init(errorMessage)) {
         delete rc;
         return 0;
@@ -401,7 +401,7 @@ static QString formatArrayHelper(const Integer *array, int size, int base = 10)
 {
     QString rc;
     const QString hexPrefix = QLatin1String("0x");
-    const QString separator= QLatin1String(", ");
+    const QString separator = QLatin1String(", ");
     const bool hex = base == 16;
     for (int i = 0; i < size; i++) {
         if (i)
-- 
GitLab