Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 371130
Collapse All | Expand All

(-)a/org.eclipse.debug.ui/plugin.xml (+1 lines)
Lines 748-753 Link Here
748
         </action>
748
         </action>
749
         <action
749
         <action
750
               id="org.eclipse.debug.ui.breakpointsView.toolbar.remove"
750
               id="org.eclipse.debug.ui.breakpointsView.toolbar.remove"
751
               definitionId="org.eclipse.ui.edit.delete"
751
               toolbarPath="breakpointGroup"
752
               toolbarPath="breakpointGroup"
752
               hoverIcon="$nl$/icons/full/elcl16/rem_co.gif"
753
               hoverIcon="$nl$/icons/full/elcl16/rem_co.gif"
753
               class="org.eclipse.debug.internal.ui.actions.breakpoints.RemoveBreakpointAction"
754
               class="org.eclipse.debug.internal.ui.actions.breakpoints.RemoveBreakpointAction"
(-)a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/AbstractRemoveActionDelegate.java (-7 / +1 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2011 IBM Corporation and others.
2
 * Copyright (c) 2000, 2012 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 10-17 Link Here
10
 *******************************************************************************/
10
 *******************************************************************************/
11
package org.eclipse.debug.internal.ui.actions;
11
package org.eclipse.debug.internal.ui.actions;
12
12
13
14
import org.eclipse.debug.ui.IDebugView;
15
import org.eclipse.ui.IViewPart;
13
import org.eclipse.ui.IViewPart;
16
14
17
/**
15
/**
Lines 30-39 Link Here
30
	 */
28
	 */
31
	public void init(IViewPart view) {
29
	public void init(IViewPart view) {
32
		super.init(view);
30
		super.init(view);
33
		IDebugView debugView= (IDebugView)getView().getAdapter(IDebugView.class);
34
		if (debugView != null) {
35
			debugView.setAction(IDebugView.REMOVE_ACTION, getAction());
36
		}
37
	}
31
	}
38
	
32
	
39
}
33
}

Return to bug 371130