summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/cppcodestylepreferences.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/cpptools/cppcodestylepreferences.cpp
parent75a3728254bc4016451038d519e7d078304e585a (diff)
downloadqt-creator-f0ef96ef0c37b5903bda18e2af80c82f14f30181.tar.gz
Replace some const char * with const char[]
Change-Id: I7657792d9ebfcaede7b719400d239f837074290b Reviewed-by: David Schulz <david.schulz@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cppcodestylepreferences.cpp')
-rw-r--r--src/plugins/cpptools/cppcodestylepreferences.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cppcodestylepreferences.cpp b/src/plugins/cpptools/cppcodestylepreferences.cpp
index 7ebe2e109c..b80bae5744 100644
--- a/src/plugins/cpptools/cppcodestylepreferences.cpp
+++ b/src/plugins/cpptools/cppcodestylepreferences.cpp
@@ -31,7 +31,7 @@
using namespace CppTools;
-static const char *settingsSuffixKey = "CodeStyleSettings";
+static const char settingsSuffixKey[] = "CodeStyleSettings";
CppCodeStylePreferences::CppCodeStylePreferences(QObject *parent) :
ICodeStylePreferences(parent)