From 6fced0e5b02473d916f053184f1279c12d2034b7 Mon Sep 17 00:00:00 2001
From: Roopesh Chander <roop@forwardbias.in>
Date: Sun, 4 Oct 2009 00:28:16 +0530
Subject: [PATCH] A little code-beautification won't hurt
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Merge-request: 1766
Reviewed-by: Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
---
 src/plugins/texteditor/tabsettings.cpp | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/plugins/texteditor/tabsettings.cpp b/src/plugins/texteditor/tabsettings.cpp
index 0efee830158..890df01de40 100644
--- a/src/plugins/texteditor/tabsettings.cpp
+++ b/src/plugins/texteditor/tabsettings.cpp
@@ -85,14 +85,14 @@ void TabSettings::fromSettings(const QString &category, const QSettings *s)
 
     *this = TabSettings(); // Assign defaults
 
-    m_spacesForTabs   = s->value(group + QLatin1String(spacesForTabsKey), m_spacesForTabs).toBool();
+    m_spacesForTabs     = s->value(group + QLatin1String(spacesForTabsKey), m_spacesForTabs).toBool();
     m_autoSpacesForTabs = s->value(group + QLatin1String(autoSpacesForTabsKey), m_autoSpacesForTabs).toBool();
-    m_autoIndent      = s->value(group + QLatin1String(autoIndentKey), m_autoIndent).toBool();
-    m_smartBackspace  = s->value(group + QLatin1String(smartBackspaceKey), m_smartBackspace).toBool();
-    m_tabSize         = s->value(group + QLatin1String(tabSizeKey), m_tabSize).toInt();
-    m_indentSize      = s->value(group + QLatin1String(indentSizeKey), m_indentSize).toInt();
-    m_indentBraces    = s->value(group + QLatin1String(indentBracesKey), m_indentBraces).toBool();
-    m_tabKeyBehavior  = (TabKeyBehavior)s->value(group + QLatin1String(tabKeyBehaviorKey), m_tabKeyBehavior).toInt();
+    m_autoIndent        = s->value(group + QLatin1String(autoIndentKey), m_autoIndent).toBool();
+    m_smartBackspace    = s->value(group + QLatin1String(smartBackspaceKey), m_smartBackspace).toBool();
+    m_tabSize           = s->value(group + QLatin1String(tabSizeKey), m_tabSize).toInt();
+    m_indentSize        = s->value(group + QLatin1String(indentSizeKey), m_indentSize).toInt();
+    m_indentBraces      = s->value(group + QLatin1String(indentBracesKey), m_indentBraces).toBool();
+    m_tabKeyBehavior    = (TabKeyBehavior)s->value(group + QLatin1String(tabKeyBehaviorKey), m_tabKeyBehavior).toInt();
 }
 
 
-- 
GitLab