1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 01:06:01 +02:00

Bug 83465: Add "Run to line" and "Resume at line" actions to the context menu of Disassembly view.

This commit is contained in:
Mikhail Khodjaiants 2005-06-10 18:21:40 +00:00
parent 9779911ecc
commit 2162c8b56f
2 changed files with 17 additions and 6 deletions

View file

@ -1,3 +1,7 @@
2005-06-10 Mikhail Khodjaiants
Bug 83465: Add "Run to line" and "Resume at line" actions to the context menu of Disassembly view.
* plugin.xml
2005-06-10 Mikhail Khodjaiants
Bug 81353: automatically opening of the disassembly window.
* ToggleInstructionStepModeActionDelegate.java

View file

@ -691,13 +691,20 @@
</and>
</visibility>
<action
helpContextId="jump_to_line_action_context"
enablesFor="1"
label="%JumpToLineAction.label"
icon="icons/elcl16/jump_co.gif"
class="org.eclipse.cdt.debug.internal.ui.actions.ResumeAtLineActionDelegate"
menubarPath="additions"
id="org.eclipse.cdt.debug.internal.ui.actions.JumpToLineActionDelegate"/>
enablesFor="1"
helpContextId="jump_to_line_action_context"
icon="icons/elcl16/jump_co.gif"
id="org.eclipse.cdt.debug.ui.resumeAtLineAction"
label="%JumpToLineAction.label"
menubarPath="additions"/>
<action
class="org.eclipse.debug.ui.actions.RunToLineActionDelegate"
definitionId="org.eclipse.debug.ui.commands.RunToLine"
helpContextId="run_to_line_action_context"
id="org.eclipse.cdt.debug.ui.runToLineAction"
label="%RunToLineAction.label"
menubarPath="additions"/>
</viewerContribution>
<objectContribution
objectClass="org.eclipse.cdt.debug.core.model.ICModule"