mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Bug 375996 - [breakpoints] CDT's "Breakpoint Properties" popup menu
item is shown for a Java breakpoint
This commit is contained in:
parent
b32dd2799c
commit
dce877458e
2 changed files with 13 additions and 4 deletions
|
@ -38,7 +38,8 @@ ShowDebuggerConsoleAction.tooltip=Show Debugger Console On Target Selection
|
||||||
AddBreakpoint.label=Toggle &Breakpoint\tDouble Click
|
AddBreakpoint.label=Toggle &Breakpoint\tDouble Click
|
||||||
AddBreakpointInteractive.label=&Add Breakpoint...\tCtrl+Double Click
|
AddBreakpointInteractive.label=&Add Breakpoint...\tCtrl+Double Click
|
||||||
EnableBreakpoint.label=&Toggle Breakpoint Enabled\tShift+Double Click
|
EnableBreakpoint.label=&Toggle Breakpoint Enabled\tShift+Double Click
|
||||||
BreakpointProperties.label=Breakpoint P&roperties...\tCtrl+Double Click
|
BreakpointProperties.label=Breakpoint P&roperties
|
||||||
|
RulerBreakpointProperties.label=Breakpoint P&roperties...\tCtrl+Double Click
|
||||||
BreakpointPropertiesCommand.name=C/C++ Breakpoint Properties
|
BreakpointPropertiesCommand.name=C/C++ Breakpoint Properties
|
||||||
BreakpointPropertiesCommand.description=View and edit properties for a given C/C++ breakpoint
|
BreakpointPropertiesCommand.description=View and edit properties for a given C/C++ breakpoint
|
||||||
ManageFunctionBreakpointAction.label=Toggle Breakpoint
|
ManageFunctionBreakpointAction.label=Toggle Breakpoint
|
||||||
|
|
|
@ -426,7 +426,7 @@
|
||||||
targetID="#CEditorRulerContext"
|
targetID="#CEditorRulerContext"
|
||||||
id="org.eclipse.cdt.debug.ui.CEditorRulerActions">
|
id="org.eclipse.cdt.debug.ui.CEditorRulerActions">
|
||||||
<action
|
<action
|
||||||
label="%BreakpointProperties.label"
|
label="%RulerBreakpointProperties.label"
|
||||||
helpContextId="breakpoint_properties_action_context"
|
helpContextId="breakpoint_properties_action_context"
|
||||||
class="org.eclipse.cdt.debug.internal.ui.actions.breakpoints.CBreakpointPropertiesRulerActionDelegate"
|
class="org.eclipse.cdt.debug.internal.ui.actions.breakpoints.CBreakpointPropertiesRulerActionDelegate"
|
||||||
menubarPath="debug"
|
menubarPath="debug"
|
||||||
|
@ -504,7 +504,7 @@
|
||||||
targetID="#ASMEditorRulerContext"
|
targetID="#ASMEditorRulerContext"
|
||||||
id="org.eclipse.cdt.debug.ui.AsmEditorRulerActions">
|
id="org.eclipse.cdt.debug.ui.AsmEditorRulerActions">
|
||||||
<action
|
<action
|
||||||
label="%BreakpointProperties.label"
|
label="%RulerBreakpointProperties.label"
|
||||||
helpContextId="breakpoint_properties_action_context"
|
helpContextId="breakpoint_properties_action_context"
|
||||||
class="org.eclipse.cdt.debug.internal.ui.actions.breakpoints.CBreakpointPropertiesRulerActionDelegate"
|
class="org.eclipse.cdt.debug.internal.ui.actions.breakpoints.CBreakpointPropertiesRulerActionDelegate"
|
||||||
menubarPath="debug"
|
menubarPath="debug"
|
||||||
|
@ -1767,7 +1767,15 @@
|
||||||
id="org.eclipse.cdt.debug.menu.command.breakpointProperties"
|
id="org.eclipse.cdt.debug.menu.command.breakpointProperties"
|
||||||
label="%BreakpointProperties.label"
|
label="%BreakpointProperties.label"
|
||||||
tooltip="%BreakpointProperties.label">
|
tooltip="%BreakpointProperties.label">
|
||||||
<visibleWhen checkEnabled="true">
|
<visibleWhen>
|
||||||
|
<with variable="selection">
|
||||||
|
<count value="1"/>
|
||||||
|
<iterate>
|
||||||
|
<or>
|
||||||
|
<adapt type="org.eclipse.cdt.debug.core.model.ICBreakpoint"/>
|
||||||
|
</or>
|
||||||
|
</iterate>
|
||||||
|
</with>
|
||||||
</visibleWhen>
|
</visibleWhen>
|
||||||
</command>
|
</command>
|
||||||
</menuContribution>
|
</menuContribution>
|
||||||
|
|
Loading…
Add table
Reference in a new issue