aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/regexp/settings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/regexp/settings.cpp')
-rw-r--r--src/plugins/regexp/settings.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/plugins/regexp/settings.cpp b/src/plugins/regexp/settings.cpp
index 29861b22f8a..18c08200684 100644
--- a/src/plugins/regexp/settings.cpp
+++ b/src/plugins/regexp/settings.cpp
@@ -34,16 +34,16 @@
#include <QtCore/QSettings>
-static const char *syntaxKey = "Syntax";
-static const char *minimalKey = "Minimal";
-static const char *caseSensitiveKey = "CaseSensitive";
-static const char *patternKey = "Patterns";
-static const char *currentPatternKey = "CurrentPattern";
-static const char *matchKey = "Matches";
-static const char *currentMatchKey = "CurrentMatch";
-static const char *patternDefault = "[A-Za-z_]+([A-Za-z_0-9]*)";
-static const char *matchDefault = "(10 + delta4) * 32";
-static const char *settingsGroup = "RegExp";
+static const char syntaxKey[] = "Syntax";
+static const char minimalKey[] = "Minimal";
+static const char caseSensitiveKey[] = "CaseSensitive";
+static const char patternKey[] = "Patterns";
+static const char currentPatternKey[] = "CurrentPattern";
+static const char matchKey[] = "Matches";
+static const char currentMatchKey[] = "CurrentMatch";
+static const char patternDefault[] = "[A-Za-z_]+([A-Za-z_0-9]*)";
+static const char matchDefault[] = "(10 + delta4) * 32";
+static const char settingsGroup[] = "RegExp";
namespace RegExp {
namespace Internal {