From fd2c99b278f9f42235ef04ddd795cdbee674cb59 Mon Sep 17 00:00:00 2001 From: Anton Leherbauer Date: Wed, 4 Oct 2006 14:40:38 +0000 Subject: [PATCH] Bug 106216 - Search result markers in folded text don't appear in the overview ruler --- .../src/org/eclipse/cdt/internal/ui/editor/CEditor.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/CEditor.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/CEditor.java index 91807ba234a..f0239af459f 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/CEditor.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/CEditor.java @@ -2357,6 +2357,7 @@ public class CEditor extends TextEditor implements ISelectionChangedListener, IR fProjectionSupport = new ProjectionSupport(projectionViewer, getAnnotationAccess(), getSharedColors()); fProjectionSupport.addSummarizableAnnotationType("org.eclipse.ui.workbench.texteditor.error"); //$NON-NLS-1$ fProjectionSupport.addSummarizableAnnotationType("org.eclipse.ui.workbench.texteditor.warning"); //$NON-NLS-1$ + fProjectionSupport.addSummarizableAnnotationType("org.eclipse.search.results"); //$NON-NLS-1$ fProjectionSupport.install(); fProjectionModelUpdater = CUIPlugin.getDefault().getFoldingStructureProviderRegistry().getCurrentFoldingProvider();