summaryrefslogtreecommitdiff
path: root/src/plugins/texteditor/displaysettings.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-05-10 15:19:38 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-05-10 15:21:41 +0200
commitddf4b613f3ebf3799f23f51a68c00649bfb84e95 (patch)
treec7fccf8ef1b66b8aef38283b333c8d731ef66cb5 /src/plugins/texteditor/displaysettings.cpp
parentbda50da7cd3bcf7ae1ea7839325bc361ed3a145d (diff)
downloadqt-creator-ddf4b613f3ebf3799f23f51a68c00649bfb84e95.tar.gz
Krazy fixes (spelling, single char strings, char constants).
Diffstat (limited to 'src/plugins/texteditor/displaysettings.cpp')
-rw-r--r--src/plugins/texteditor/displaysettings.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/plugins/texteditor/displaysettings.cpp b/src/plugins/texteditor/displaysettings.cpp
index 680b7c2caf..ae3165945e 100644
--- a/src/plugins/texteditor/displaysettings.cpp
+++ b/src/plugins/texteditor/displaysettings.cpp
@@ -35,19 +35,19 @@
#include <QtCore/QSettings>
#include <QtCore/QString>
-static const char * const displayLineNumbersKey = "DisplayLineNumbers";
-static const char * const textWrappingKey = "TextWrapping";
-static const char * const showWrapColumnKey = "ShowWrapColumn";
-static const char * const wrapColumnKey = "WrapColumn";
-static const char * const visualizeWhitespaceKey = "VisualizeWhitespace";
-static const char * const displayFoldingMarkersKey = "DisplayFoldingMarkers";
-static const char * const highlightCurrentLineKey = "HighlightCurrentLine2Key";
-static const char * const highlightBlocksKey = "HighlightBlocksKey";
-static const char * const animateMatchingParenthesesKey= "AnimateMatchingParenthesesKey";
-static const char * const markTextChangesKey = "MarkTextChanges";
-static const char * const autoFoldFirstCommentKey = "AutoFoldFirstComment";
-static const char * const centerCursorOnScrollKey = "CenterCursorOnScroll";
-static const char * const groupPostfix = "DisplaySettings";
+static const char displayLineNumbersKey[] = "DisplayLineNumbers";
+static const char textWrappingKey[] = "TextWrapping";
+static const char showWrapColumnKey[] = "ShowWrapColumn";
+static const char wrapColumnKey[] = "WrapColumn";
+static const char visualizeWhitespaceKey[] = "VisualizeWhitespace";
+static const char displayFoldingMarkersKey[] = "DisplayFoldingMarkers";
+static const char highlightCurrentLineKey[] = "HighlightCurrentLine2Key";
+static const char highlightBlocksKey[] = "HighlightBlocksKey";
+static const char animateMatchingParenthesesKey[] = "AnimateMatchingParenthesesKey";
+static const char markTextChangesKey[] = "MarkTextChanges";
+static const char autoFoldFirstCommentKey[] = "AutoFoldFirstComment";
+static const char centerCursorOnScrollKey[] = "CenterCursorOnScroll";
+static const char groupPostfix[] = "DisplaySettings";
namespace TextEditor {