diff options
author | David Schulz <[email protected]> | 2016-08-16 14:17:48 +0200 |
---|---|---|
committer | David Schulz <[email protected]> | 2016-08-22 05:40:50 +0000 |
commit | 8b21f687c0c81f309290343a6d2b9caba1eb93f0 (patch) | |
tree | 0edc54f11b2de77a11743d597c82ca4550962e86 /src/plugins/clangcodemodel/clangcodemodelplugin.cpp | |
parent | 5a40bddf08c18eaa3cc55e46d36f561730d0b3cf (diff) |
Add default tool tips to text marks
The default tool tip should describe the general purpose
of the mark which is displayed in the UI when no tool tip
is explicitly set for the text mark.
Change-Id: I27aff26cf0f3458d454428e805a9b323191dc393
Reviewed-by: Nikolai Kosjar <[email protected]>
Diffstat (limited to 'src/plugins/clangcodemodel/clangcodemodelplugin.cpp')
-rw-r--r-- | src/plugins/clangcodemodel/clangcodemodelplugin.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/clangcodemodel/clangcodemodelplugin.cpp b/src/plugins/clangcodemodel/clangcodemodelplugin.cpp index 1b435f95a85..ba1bc10376b 100644 --- a/src/plugins/clangcodemodel/clangcodemodelplugin.cpp +++ b/src/plugins/clangcodemodel/clangcodemodelplugin.cpp @@ -51,6 +51,12 @@ void initializeTextMarks() Utils::Theme::ClangCodeModel_Warning_TextMarkColor); TextEditor::TextMark::setCategoryColor(Core::Id(Constants::CLANG_ERROR), Utils::Theme::ClangCodeModel_Error_TextMarkColor); + TextEditor::TextMark::setDefaultToolTip(Core::Id(Constants::CLANG_WARNING), + QApplication::translate("Clang Code Model Marks", + "Code Model Warning")); + TextEditor::TextMark::setDefaultToolTip(Core::Id(Constants::CLANG_ERROR), + QApplication::translate("Clang Code Model Marks", + "Code Model Error")); } void addProjectPanelWidget() |