1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
David Inglis 2005-08-02 15:53:05 +00:00
parent 1d885096d4
commit 546a228e85
2 changed files with 4 additions and 4 deletions

View file

@ -716,9 +716,9 @@ public class CEditor extends TextEditor implements ISelectionChangedListener, IS
action.setActionDefinitionId(ICEditorActionDefinitionIds.OPEN_DEF); action.setActionDefinitionId(ICEditorActionDefinitionIds.OPEN_DEF);
setAction("OpenDefinition", action); //$NON-NLS-1$ setAction("OpenDefinition", action); //$NON-NLS-1$
action = new OpenTypeHierarchyAction(this); // action = new OpenTypeHierarchyAction(this);
action.setActionDefinitionId(ICEditorActionDefinitionIds.OPEN_TYPE_HIERARCHY); // action.setActionDefinitionId(ICEditorActionDefinitionIds.OPEN_TYPE_HIERARCHY);
setAction("OpenTypeHierarchy", action); //$NON-NLS-1$ // setAction("OpenTypeHierarchy", action); //$NON-NLS-1$
fShowInCViewAction = new ShowInCViewAction(this); fShowInCViewAction = new ShowInCViewAction(this);
action = fShowInCViewAction; action = fShowInCViewAction;

View file

@ -111,7 +111,7 @@ public interface ICEditorActionDefinitionIds extends ITextEditorActionDefinition
* Action definition ID of the navigate -> open type hierarchy action * Action definition ID of the navigate -> open type hierarchy action
* (value <code>"org.eclipse.cdt.ui.edit.text.c.open.type.hierarchy"</code>). * (value <code>"org.eclipse.cdt.ui.edit.text.c.open.type.hierarchy"</code>).
*/ */
public static final String OPEN_TYPE_HIERARCHY= "org.eclipse.cdt.ui.edit.text.c.open.type.hierarchy"; //$NON-NLS-1$ // public static final String OPEN_TYPE_HIERARCHY= "org.eclipse.cdt.ui.edit.text.c.open.type.hierarchy"; //$NON-NLS-1$
/** /**
* Action definition ID of the navigate -> open action * Action definition ID of the navigate -> open action