summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/cpptoolsconstants.h
diff options
context:
space:
mode:
authorNikolai Kosjar <nikolai.kosjar@theqtcompany.com>2016-02-22 17:18:18 +0100
committerNikolai Kosjar <nikolai.kosjar@theqtcompany.com>2016-03-01 11:21:36 +0000
commit8cfef9657a112276dd2308bf31e61b17580c5088 (patch)
tree556be8e5563ce1decdfd875dc3dd0067e38028dd /src/plugins/cpptools/cpptoolsconstants.h
parent7026b26c4903f9f03c25848920252864b7bc9c60 (diff)
downloadqt-creator-8cfef9657a112276dd2308bf31e61b17580c5088.tar.gz
Clang: Introduce switching/adding of warning configurations
A warning configuration is a list of command line (warning) options for libclang. Three non-editable built-in configurations are provided by default. The user can copy a configuration to customize it. This is still a global setting and it changes take effect after re-opening a document. Both issues will be addressed in follow-up changes. Change-Id: I86667d7dc39ad31b88666454220e6da563797740 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com> Reviewed-by: Marco Bubke <marco.bubke@theqtcompany.com>
Diffstat (limited to 'src/plugins/cpptools/cpptoolsconstants.h')
-rw-r--r--src/plugins/cpptools/cpptoolsconstants.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cpptoolsconstants.h b/src/plugins/cpptools/cpptoolsconstants.h
index 37e8acb601..90a62b8f71 100644
--- a/src/plugins/cpptools/cpptoolsconstants.h
+++ b/src/plugins/cpptools/cpptoolsconstants.h
@@ -49,7 +49,8 @@ const char LOWERCASE_CPPFILES_KEY[] = "LowerCaseFiles";
enum { lowerCaseFilesDefault = 1 };
const char CPPTOOLS_SORT_EDITOR_DOCUMENT_OUTLINE[] = "SortedMethodOverview";
const char CPPTOOLS_MODEL_MANAGER_PCH_USAGE[] = "PCHUsage";
-const char CPPTOOLS_EXTRA_CLANG_OPTIONS[] = "ExtraClangOptions";
+
+const char CPP_CLANG_BUILTIN_CONFIG_ID_EVERYTHING_WITH_EXCEPTIONS[] = "Builtin.EverythingWithExceptions";
const char CPP_CODE_STYLE_SETTINGS_ID[] = "A.Cpp.Code Style";
const char CPP_CODE_STYLE_SETTINGS_NAME[] = QT_TRANSLATE_NOOP("CppTools", "Code Style");