aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/storagesettings.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2012-11-22 10:29:58 +0200
committerOrgad Shaneh <orgads@gmail.com>2012-11-22 09:36:09 +0100
commitf0ef96ef0c37b5903bda18e2af80c82f14f30181 (patch)
tree755da2a91de4b40cd822a3198d6717e3ebb53010 /src/plugins/texteditor/storagesettings.cpp
parent75a3728254bc4016451038d519e7d078304e585a (diff)
Replace some const char * with const char[]
Change-Id: I7657792d9ebfcaede7b719400d239f837074290b Reviewed-by: David Schulz <david.schulz@digia.com>
Diffstat (limited to 'src/plugins/texteditor/storagesettings.cpp')
-rw-r--r--src/plugins/texteditor/storagesettings.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/texteditor/storagesettings.cpp b/src/plugins/texteditor/storagesettings.cpp
index cbc020ff32..a4654984e8 100644
--- a/src/plugins/texteditor/storagesettings.cpp
+++ b/src/plugins/texteditor/storagesettings.cpp
@@ -36,11 +36,11 @@
namespace TextEditor {
-static const char * const cleanWhitespaceKey = "cleanWhitespace";
-static const char * const inEntireDocumentKey = "inEntireDocument";
-static const char * const addFinalNewLineKey = "addFinalNewLine";
-static const char * const cleanIndentationKey = "cleanIndentation";
-static const char * const groupPostfix = "StorageSettings";
+static const char cleanWhitespaceKey[] = "cleanWhitespace";
+static const char inEntireDocumentKey[] = "inEntireDocument";
+static const char addFinalNewLineKey[] = "addFinalNewLine";
+static const char cleanIndentationKey[] = "cleanIndentation";
+static const char groupPostfix[] = "StorageSettings";
StorageSettings::StorageSettings()
: m_cleanWhitespace(true),