mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Moved the 'AddAddressBreakpointActionDelegate' action to the 'org.eclipse.cdt.debug.internal.ui.actions' package.
This commit is contained in:
parent
6e61fb28d8
commit
65f3447d5a
3 changed files with 10 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2003-10-22 Mikhail Khodjaiants
|
||||||
|
Moved the 'AddAddressBreakpointActionDelegate' action
|
||||||
|
to the 'org.eclipse.cdt.debug.internal.ui.actions' package.
|
||||||
|
* AddAddressBreakpointActionDelegate.java
|
||||||
|
* plugin.xml
|
||||||
|
|
||||||
2003-10-16 Mikhail Khodjaiants
|
2003-10-16 Mikhail Khodjaiants
|
||||||
Cleanup.
|
Cleanup.
|
||||||
* CUISourceLocator.java
|
* CUISourceLocator.java
|
||||||
|
|
|
@ -221,10 +221,10 @@
|
||||||
label="%AddAddressBreakpointAction.label"
|
label="%AddAddressBreakpointAction.label"
|
||||||
icon="icons/full/obj16/addrbrkp_obj.gif"
|
icon="icons/full/obj16/addrbrkp_obj.gif"
|
||||||
helpContextId="add_address_breakpoint_action_context"
|
helpContextId="add_address_breakpoint_action_context"
|
||||||
class="org.eclipse.cdt.debug.internal.ui.AddAddressBreakpointActionDelegate"
|
class="org.eclipse.cdt.debug.internal.ui.actions.AddAddressBreakpointActionDelegate"
|
||||||
menubarPath="org.eclipse.ui.run/cBreakpointGroup"
|
menubarPath="org.eclipse.ui.run/cBreakpointGroup"
|
||||||
enablesFor="1"
|
enablesFor="1"
|
||||||
id="org.eclipse.cdt.debug.internal.ui.AddAddressBreakpointActionDelegate">
|
id="org.eclipse.cdt.debug.internal.ui.actions.AddAddressBreakpointActionDelegate">
|
||||||
<enablement>
|
<enablement>
|
||||||
<pluginState
|
<pluginState
|
||||||
value="activated"
|
value="activated"
|
||||||
|
@ -1188,7 +1188,7 @@
|
||||||
id="org.eclipse.cdt.debug.internal.ui.actions.AddGlobalsActionDelegate">
|
id="org.eclipse.cdt.debug.internal.ui.actions.AddGlobalsActionDelegate">
|
||||||
</action>
|
</action>
|
||||||
<action
|
<action
|
||||||
id="org.eclipse.cdt.debug.internal.ui.AddAddressBreakpointActionDelegate">
|
id="org.eclipse.cdt.debug.internal.ui.actions.AddAddressBreakpointActionDelegate">
|
||||||
</action>
|
</action>
|
||||||
<action
|
<action
|
||||||
id="org.eclipse.cdt.debug.internal.ui.actions.JumpToLineActionDelegate">
|
id="org.eclipse.cdt.debug.internal.ui.actions.JumpToLineActionDelegate">
|
||||||
|
|
|
@ -3,11 +3,10 @@
|
||||||
* All Rights Reserved.
|
* All Rights Reserved.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
package org.eclipse.cdt.debug.internal.ui;
|
package org.eclipse.cdt.debug.internal.ui.actions;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.CDebugModel;
|
import org.eclipse.cdt.debug.core.CDebugModel;
|
||||||
import org.eclipse.cdt.debug.core.model.IExecFileInfo;
|
import org.eclipse.cdt.debug.core.model.IExecFileInfo;
|
||||||
import org.eclipse.cdt.debug.internal.ui.actions.AbstractListenerActionDelegate;
|
|
||||||
import org.eclipse.debug.core.DebugException;
|
import org.eclipse.debug.core.DebugException;
|
||||||
import org.eclipse.debug.core.model.IDebugElement;
|
import org.eclipse.debug.core.model.IDebugElement;
|
||||||
import org.eclipse.debug.core.model.IDebugTarget;
|
import org.eclipse.debug.core.model.IDebugTarget;
|
Loading…
Add table
Reference in a new issue