Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlena Laskavaia2010-08-16 02:20:34 +0000
committerAlena Laskavaia2010-08-16 02:20:34 +0000
commitb71382f1af6a1dc78e957c8e0dacfcce694306d0 (patch)
tree0cdf18a29d4e4fbe400cd1bbdb5eb7d1fa59df35 /codan/org.eclipse.cdt.codan.ui
parentba16e750fa5e9ef69592f355c669d57382570aaf (diff)
downloadorg.eclipse.cdt-b71382f1af6a1dc78e957c8e0dacfcce694306d0.tar.gz
org.eclipse.cdt-b71382f1af6a1dc78e957c8e0dacfcce694306d0.tar.xz
org.eclipse.cdt-b71382f1af6a1dc78e957c8e0dacfcce694306d0.zip
Bug 309603 - Improve quick fixes to be more like JDT in the editor UI
Diffstat (limited to 'codan/org.eclipse.cdt.codan.ui')
-rw-r--r--codan/org.eclipse.cdt.codan.ui/plugin.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/codan/org.eclipse.cdt.codan.ui/plugin.xml b/codan/org.eclipse.cdt.codan.ui/plugin.xml
index 65e508b7b57..d451d9d1ccb 100644
--- a/codan/org.eclipse.cdt.codan.ui/plugin.xml
+++ b/codan/org.eclipse.cdt.codan.ui/plugin.xml
@@ -170,4 +170,25 @@
priority="80">
</markerGroupingEntry>
</extension>
+ <extension
+ point="org.eclipse.ui.editors.annotationTypes">
+ <type
+ markerSeverity="2"
+ markerType="org.eclipse.cdt.codan.core.codanProblem"
+ name="org.eclipse.cdt.codan.ui.annotation.error"
+ super="org.eclipse.ui.workbench.texteditor.error">
+ </type>
+ <type
+ markerSeverity="1"
+ markerType="org.eclipse.cdt.codan.core.codanProblem"
+ name="org.eclipse.cdt.codan.ui.annotation.warning"
+ super="org.eclipse.ui.workbench.texteditor.warning">
+ </type>
+ <type
+ markerSeverity="0"
+ markerType="org.eclipse.cdt.codan.core.codanProblem"
+ name="org.eclipse.cdt.codan.ui.annotation.info"
+ super="org.eclipse.ui.workbench.texteditor.info">
+ </type>
+ </extension>
</plugin>

Back to the top