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

'Run to line' and 'Add expression' actions for assembly editor.

This commit is contained in:
Mikhail Khodjaiants 2002-12-02 21:08:52 +00:00
parent 1b1022489f
commit 1b0294e497
2 changed files with 37 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2002-12-02 Mikhail Khodjaiants
'Run to line' and 'Add expression' actions for assembly editor.
*plugin.xml
2002-11-29 Mikhail Khodjaiants
Cosmetic change for the MemoryView preference page.
* plugin.properties

View file

@ -448,6 +448,39 @@
</enablement>
</action>
</viewerContribution>
<viewerContribution
targetID="#ASMEditorRulerContext"
id="org.eclipse.cdt.debug.ui.AsmEditorPopupActions">
<action
menubarPath="additions"
class="org.eclipse.cdt.debug.internal.ui.actions.AddExpressionActionDelegate"
icon="icons/full/obj16/expression_obj.gif"
label="%AddExpressionAction.label"
id="org.eclipse.cdt.debug.internal.ui.actions.AddExpressionActionDelegate"
helpContextId="add_expression_action_context">
<enablement>
<pluginState
id="org.eclipse.cdt.debug.ui"
value="activated">
</pluginState>
</enablement>
</action>
<action
menubarPath="additions"
class="org.eclipse.cdt.debug.internal.ui.actions.RunToLineActionDelegate"
icon="icons/full/clcl16/runtoline_co.gif"
label="%RunToLineAction.label"
enablesFor="1"
id="org.eclipse.cdt.debug.internal.ui.actions.RunToLineActionDelegate"
helpContextId="run_to_line_action_context">
<enablement>
<pluginState
id="org.eclipse.cdt.debug.ui"
value="activated">
</pluginState>
</enablement>
</action>
</viewerContribution>
</extension>
<extension
point="org.eclipse.ui.viewActions">