mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 09:16:02 +02:00
Fixed Bug 41480 - ceditor extension point is not default editor for C++ file extensions
This commit is contained in:
parent
905d5c624d
commit
fbd1af4e45
2 changed files with 10 additions and 6 deletions
|
@ -1,4 +1,7 @@
|
||||||
2003-08-12
|
2003-08-13 John Camelon
|
||||||
|
Fixed Bug 41480 - ceditor extension point is not default editor for C++ file extensions
|
||||||
|
|
||||||
|
2003-08-12 Hoda Amer
|
||||||
Added class name validation to NewClassWizardPage
|
Added class name validation to NewClassWizardPage
|
||||||
Used the new search (indexer) for Code completion in CCompletionProcessor
|
Used the new search (indexer) for Code completion in CCompletionProcessor
|
||||||
|
|
||||||
|
|
|
@ -26,9 +26,9 @@
|
||||||
<extension-point id="CCompletionContributor" name="%completionContributorName"/>
|
<extension-point id="CCompletionContributor" name="%completionContributorName"/>
|
||||||
<extension-point id="CElementFilters" name="%elementFiltersName"/>
|
<extension-point id="CElementFilters" name="%elementFiltersName"/>
|
||||||
<!-- =========================================================================== -->
|
<!-- =========================================================================== -->
|
||||||
<!-- Extension point: org.eclipse.cdt.ui.textHovers -->
|
|
||||||
<!-- Purpose: Provide a perspective specific text hovering for CEditor files -->
|
|
||||||
<!-- Extension Implementation: must implement org.eclipse.jface.text.ITextHover -->
|
<!-- Extension Implementation: must implement org.eclipse.jface.text.ITextHover -->
|
||||||
|
<!-- Purpose: Provide a perspective specific text hovering for CEditor files -->
|
||||||
|
<!-- Extension point: org.eclipse.cdt.ui.textHovers -->
|
||||||
<!-- =========================================================================== -->
|
<!-- =========================================================================== -->
|
||||||
<extension-point id="textHovers" name="%textHoversName"/>
|
<extension-point id="textHovers" name="%textHoversName"/>
|
||||||
<extension-point id="CToolTabGroup" name="C/C++ Tool Configuration Tabs" schema="schema/CToolTabGroup.exsd"/>
|
<extension-point id="CToolTabGroup" name="C/C++ Tool Configuration Tabs" schema="schema/CToolTabGroup.exsd"/>
|
||||||
|
@ -137,8 +137,8 @@
|
||||||
id="org.eclipse.cdt.ui.MakeView">
|
id="org.eclipse.cdt.ui.MakeView">
|
||||||
</view>
|
</view>
|
||||||
</extension>
|
</extension>
|
||||||
<!-- For C Wizards -->
|
|
||||||
<!-- The wizards -->
|
<!-- The wizards -->
|
||||||
|
<!-- For C Wizards -->
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.ui.newWizards">
|
point="org.eclipse.ui.newWizards">
|
||||||
<category
|
<category
|
||||||
|
@ -268,6 +268,7 @@
|
||||||
id="org.eclipse.cdt.ui.ceditor"
|
id="org.eclipse.cdt.ui.ceditor"
|
||||||
point="org.eclipse.ui.editors">
|
point="org.eclipse.ui.editors">
|
||||||
<editor
|
<editor
|
||||||
|
default="true"
|
||||||
name="%CEditor.name"
|
name="%CEditor.name"
|
||||||
icon="icons/full/obj16/c_file_obj.gif"
|
icon="icons/full/obj16/c_file_obj.gif"
|
||||||
extensions="c, h, cc, hh, cpp, cxx, hpp"
|
extensions="c, h, cc, hh, cpp, cxx, hpp"
|
||||||
|
@ -825,8 +826,8 @@
|
||||||
<tool
|
<tool
|
||||||
name="%ToolName.linker"
|
name="%ToolName.linker"
|
||||||
outputFlag="-o"
|
outputFlag="-o"
|
||||||
command="g++ -shared"
|
|
||||||
outputs="dll"
|
outputs="dll"
|
||||||
|
command="g++ -shared"
|
||||||
id="org.eclipse.cdt.build.tool.cygwin.solink">
|
id="org.eclipse.cdt.build.tool.cygwin.solink">
|
||||||
<optionCategory
|
<optionCategory
|
||||||
owner="org.eclipse.cdt.build.tool.cygwin.solink"
|
owner="org.eclipse.cdt.build.tool.cygwin.solink"
|
||||||
|
@ -874,9 +875,9 @@
|
||||||
<tool
|
<tool
|
||||||
name="%ToolName.linker"
|
name="%ToolName.linker"
|
||||||
outputFlag="-o"
|
outputFlag="-o"
|
||||||
|
outputs="dll"
|
||||||
outputPrefix="cyg"
|
outputPrefix="cyg"
|
||||||
command="g++ -shared"
|
command="g++ -shared"
|
||||||
outputs="dll"
|
|
||||||
id="org.eclipse.cdt.build.tool.cygwin.explink">
|
id="org.eclipse.cdt.build.tool.cygwin.explink">
|
||||||
<optionCategory
|
<optionCategory
|
||||||
owner="org.eclipse.cdt.build.tool.cygwin.explink"
|
owner="org.eclipse.cdt.build.tool.cygwin.explink"
|
||||||
|
|
Loading…
Add table
Reference in a new issue