Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Camelon2003-06-16 17:35:46 +0000
committerJohn Camelon2003-06-16 17:35:46 +0000
commit18eca5c02b25a76b56fda319520173e9c9acfbfc (patch)
treed92f7057c61722e7a15e66dec94b794804ae6d27 /core/org.eclipse.cdt.ui/plugin.xml
parent04804f1cf1827fdc60df608e65de838abdd8bffa (diff)
downloadorg.eclipse.cdt-18eca5c02b25a76b56fda319520173e9c9acfbfc.tar.gz
org.eclipse.cdt-18eca5c02b25a76b56fda319520173e9c9acfbfc.tar.xz
org.eclipse.cdt-18eca5c02b25a76b56fda319520173e9c9acfbfc.zip
Patch for Andrew Niefer.
Skeleton implementation of C/C++ Search.
Diffstat (limited to 'core/org.eclipse.cdt.ui/plugin.xml')
-rw-r--r--core/org.eclipse.cdt.ui/plugin.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.ui/plugin.xml b/core/org.eclipse.cdt.ui/plugin.xml
index a60a60ea923..a90d3c6f500 100644
--- a/core/org.eclipse.cdt.ui/plugin.xml
+++ b/core/org.eclipse.cdt.ui/plugin.xml
@@ -888,5 +888,18 @@
</tool>
</target>
</extension>
+ <extension
+ id="org.eclipse.cdt.ui.CSearchPage"
+ name="CSearchPage"
+ point="org.eclipse.search.searchPages">
+ <page
+ showScopeSection="true"
+ label="C/CPP Search"
+ icon="icons/full/obj16/csearch_obj.gif"
+ class="org.eclipse.cdt.internal.ui.search.CSearchPage"
+ sizeHint="460, 160"
+ id="org.eclipse.cdt.ui.CSearchPage">
+ </page>
+ </extension>
</plugin>

Back to the top