Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--codan/org.eclipse.cdt.codan.ui/plugin.xml18
1 files changed, 15 insertions, 3 deletions
diff --git a/codan/org.eclipse.cdt.codan.ui/plugin.xml b/codan/org.eclipse.cdt.codan.ui/plugin.xml
index 08459791869..4ff9c301a33 100644
--- a/codan/org.eclipse.cdt.codan.ui/plugin.xml
+++ b/codan/org.eclipse.cdt.codan.ui/plugin.xml
@@ -199,6 +199,12 @@
textStylePreferenceValue="SQUIGGLES"
verticalRulerPreferenceKey="org.eclipse.cdt.codan.ui.annotation.error.ruler"
verticalRulerPreferenceValue="true"
+ showInNextPrevDropdownToolbarActionKey="org.eclipse.cdt.codan.ui.annotation.error.NextPrevDropdownToolbar"
+ showInNextPrevDropdownToolbarAction="true"
+ isGoToNextNavigationTargetKey="org.eclipse.cdt.codan.ui.annotation.error.GoToNextNavigationTarget"
+ isGoToNextNavigationTarget="true"
+ isGoToPreviousNavigationTargetKey="org.eclipse.cdt.codan.ui.annotation.error.GoToPreviousNavigationTarget"
+ isGoToPreviousNavigationTarget="true"
label="%marker.editor.error"
icon="icons/red_bug.gif"
quickFixIcon="icons/red_bug_assist.gif"
@@ -212,10 +218,16 @@
overviewRulerPreferenceValue="true"
textPreferenceKey="org.eclipse.cdt.codan.ui.annotation.warning.text"
textPreferenceValue="true"
- textStylePreferenceKey="org.eclipse.cdt.codan.ui.annotation.error.textstyle"
+ textStylePreferenceKey="org.eclipse.cdt.codan.ui.annotation.warning.textstyle"
textStylePreferenceValue="SQUIGGLES"
- verticalRulerPreferenceKey="org.eclipse.cdt.codan.ui.annotation.warning.ruler"
- verticalRulerPreferenceValue="true"
+ verticalRulerPreferenceKey="org.eclipse.cdt.codan.ui.annotation.warning.ruler"
+ verticalRulerPreferenceValue="true"
+ showInNextPrevDropdownToolbarActionKey="org.eclipse.cdt.codan.ui.annotation.warning.NextPrevDropdownToolbar"
+ showInNextPrevDropdownToolbarAction="true"
+ isGoToNextNavigationTargetKey="org.eclipse.cdt.codan.ui.annotation.warning.GoToNextNavigationTarget"
+ isGoToNextNavigationTarget="true"
+ isGoToPreviousNavigationTargetKey="org.eclipse.cdt.codan.ui.annotation.warning.GoToPreviousNavigationTarget"
+ isGoToPreviousNavigationTarget="true"
label="%marker.editor.warning"
icon="icons/yellow_bug.gif"
quickFixIcon="icons/yellow_bug_assist.gif"

Back to the top