mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +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
|
||||
AddBreakpointInteractive.label=&Add Breakpoint...\tCtrl+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.description=View and edit properties for a given C/C++ breakpoint
|
||||
ManageFunctionBreakpointAction.label=Toggle Breakpoint
|
||||
|
|
|
@ -426,7 +426,7 @@
|
|||
targetID="#CEditorRulerContext"
|
||||
id="org.eclipse.cdt.debug.ui.CEditorRulerActions">
|
||||
<action
|
||||
label="%BreakpointProperties.label"
|
||||
label="%RulerBreakpointProperties.label"
|
||||
helpContextId="breakpoint_properties_action_context"
|
||||
class="org.eclipse.cdt.debug.internal.ui.actions.breakpoints.CBreakpointPropertiesRulerActionDelegate"
|
||||
menubarPath="debug"
|
||||
|
@ -504,7 +504,7 @@
|
|||
targetID="#ASMEditorRulerContext"
|
||||
id="org.eclipse.cdt.debug.ui.AsmEditorRulerActions">
|
||||
<action
|
||||
label="%BreakpointProperties.label"
|
||||
label="%RulerBreakpointProperties.label"
|
||||
helpContextId="breakpoint_properties_action_context"
|
||||
class="org.eclipse.cdt.debug.internal.ui.actions.breakpoints.CBreakpointPropertiesRulerActionDelegate"
|
||||
menubarPath="debug"
|
||||
|
@ -1767,7 +1767,15 @@
|
|||
id="org.eclipse.cdt.debug.menu.command.breakpointProperties"
|
||||
label="%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>
|
||||
</command>
|
||||
</menuContribution>
|
||||
|
|
Loading…
Add table
Reference in a new issue