1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-03-28 14:56:28 +01:00
cdt/launchbar/org.eclipse.launchbar.ui/plugin.xml
Jonah Graham 2d516a3c54 Correct descriptorTypeId for default launch type
This is mostly a no-op change, but fixes the error
about incorrect reference.

The descriptorUI extension used an ID that never existed,
and the code in ConfigSelector just fell back on
DefaultDescriptorLabelProvider it none were found, so
the user visible change here is nothing.

Fixup for 8f8c2e02b6
2022-11-04 08:19:23 -04:00

63 lines
2.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension-point id="launchBarUIContributions" name="launchBar UI Contributions" schema="schema/launchBarUIContributions.exsd"/>
<extension-point id="launchTargetTypeUI" name="Launch Target Type UI" schema="schema/launchTargetTypeUI.exsd"/>
<extension
point="org.eclipse.ui.commands">
<category
id="org.eclipse.launchbar.ui.category.launchBar"
name="Launch Bar">
</category>
<command
categoryId="org.eclipse.launchbar.ui.category.launchBar"
defaultHandler="org.eclipse.launchbar.ui.internal.commands.BuildActiveCommandHandler"
id="org.eclipse.launchbar.ui.command.buildActive"
name="Build Active Launch Configuration">
</command>
<command
categoryId="org.eclipse.launchbar.ui.category.launchBar"
defaultHandler="org.eclipse.launchbar.ui.internal.commands.LaunchActiveCommandHandler"
id="org.eclipse.launchbar.ui.command.launchActive"
name="Launch Active Launch Configuration">
</command>
<command
categoryId="org.eclipse.launchbar.ui.category.launchBar"
defaultHandler="org.eclipse.launchbar.ui.internal.commands.StopActiveCommandHandler"
id="org.eclipse.launchbar.ui.command.stop"
name="Stop">
</command>
<command
categoryId="org.eclipse.launchbar.ui.category.launchBar"
defaultHandler="org.eclipse.launchbar.ui.internal.commands.ConfigureActiveLaunchHandler"
id="org.eclipse.launchbar.ui.command.configureActiveLaunch"
name="Edit Active Launch Configuration">
</command>
</extension>
<extension
point="org.eclipse.launchbar.ui.launchBarUIContributions">
<descriptorUI
descriptorTypeId="org.eclipse.launchbar.core.descriptorType.default"
labelProvider="org.eclipse.launchbar.ui.DefaultDescriptorLabelProvider">
</descriptorUI>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<category
id="org.eclipse.launchbar.ui.targetWizards"
name="Launch Targets">
</category>
<wizard
category="org.eclipse.launchbar.ui.targetWizards"
class="org.eclipse.launchbar.ui.internal.target.NewLaunchTargetWizard"
icon="icons/localTarget.png"
id="org.eclipse.launchbar.ui.superTargetWizard"
name="Launch Target"
project="false">
</wizard>
</extension>
</plugin>