Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2003-07-15 14:48:13 +0000
committerDoug Schaefer2003-07-15 14:48:13 +0000
commit0c232fa41669a60afb177d6eb680ad9d1da04733 (patch)
treec7bdb84b210ad9584215a9c1a08f4d654b7e89d0 /core/org.eclipse.cdt.ui/plugin.xml
parent2c445a38b782e96f2546d896152846786e580860 (diff)
downloadorg.eclipse.cdt-0c232fa41669a60afb177d6eb680ad9d1da04733.tar.gz
org.eclipse.cdt-0c232fa41669a60afb177d6eb680ad9d1da04733.tar.xz
org.eclipse.cdt-0c232fa41669a60afb177d6eb680ad9d1da04733.zip
Patch for Andrew Niefer:
Patch for C++ Search to support searching for class declarations Interface changes: - modified search Interfaces : - ICSearchConstants - changed SearchFor instantiations to more closely match what we can search for. - ICSearchPattern - added getLimitTo() - ICSearchResultCollector - added createMatch(), which should return an object implementing the new IMatch interface, these store the any data needed to keep found matches. These interfaces are still new and its too early for anyone other than search and the indexer to be using them. - added search interface IMatch. Changes to core.search had to do with keeping track of the current scope during the search, as well as other modifications for matching class declarations, and the start of the patterns for matching other things. Changes to ui.search had to do with creating IMatch objects to store the information needed by the label provider to display icons and sort the results.
Diffstat (limited to 'core/org.eclipse.cdt.ui/plugin.xml')
-rw-r--r--core/org.eclipse.cdt.ui/plugin.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.ui/plugin.xml b/core/org.eclipse.cdt.ui/plugin.xml
index ef4008fef7c..d357a7aa93b 100644
--- a/core/org.eclipse.cdt.ui/plugin.xml
+++ b/core/org.eclipse.cdt.ui/plugin.xml
@@ -973,8 +973,8 @@
class="org.eclipse.cdt.internal.ui.search.ParentNameSorter"
id="org.eclipse.search.internal.ui.ParentNameSorter">
</sorter>
- <sorter
- pageId="org.eclipse.cdt.ui.JavaSearchPage"
+ <sorter
+ pageId="org.eclipse.cdt.ui.CSearchPage"
label="%PathNameSorter.label"
icon="icons/full/clcl16/search_sortmatch.gif"
tooltip="%PathNameSorter.tooltip"

Back to the top