From 85294104b3e304bc6ed6f6d5ba2fa3fa946c3379 Mon Sep 17 00:00:00 2001 From: Doug Schaefer Date: Wed, 6 Jul 2005 20:11:34 +0000 Subject: [PATCH] PR 98765 - removing duplicates from proposal list. --- .../ui/text/contentassist/SearchCompletionContributor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/SearchCompletionContributor.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/SearchCompletionContributor.java index 29040010928..72e74fef955 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/SearchCompletionContributor.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/SearchCompletionContributor.java @@ -53,7 +53,7 @@ public class SearchCompletionContributor implements ICompletionContributor { ICSearchScope scope = SearchEngine.createWorkspaceScope(); // Create the pattern - ICSearchPattern pattern = SearchEngine.createSearchPattern(prefix + "*", ICSearchConstants.UNKNOWN_SEARCH_FOR, ICSearchConstants.ALL_OCCURRENCES, false); //$NON-NLS-1$ + ICSearchPattern pattern = SearchEngine.createSearchPattern(prefix + "*", ICSearchConstants.UNKNOWN_SEARCH_FOR, ICSearchConstants.ALL_OCCURRENCES, true); //$NON-NLS-1$ // Run the search BasicSearchResultCollector collector = new BasicSearchResultCollector();