Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2014-01-20 11:43:29 +0000
committerMichael Rennie2014-03-27 14:42:01 +0000
commitcce6f0030a3b1de3d725267fd53a36dacca2b2dc (patch)
treeacbc4bae7a412e88f58d92873da5e65b47b3783d
parent0a8c673549ad7b979649f302480b56f94fe1db11 (diff)
downloadeclipse.platform.debug-cce6f0030a3b1de3d725267fd53a36dacca2b2dc.tar.gz
eclipse.platform.debug-cce6f0030a3b1de3d725267fd53a36dacca2b2dc.tar.xz
eclipse.platform.debug-cce6f0030a3b1de3d725267fd53a36dacca2b2dc.zip
Bug 426110 - [Graphics] Replace gif reference to org.eclipse.ui.ide with
a reference to the png file Change-Id: I304adfdeb4f930da7d4ed653955796c0703a8d19 Signed-off-by: Lars Vogel <Lars.Vogel@gmail.com>
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/OpenBreakpointMarkerAction.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/OpenBreakpointMarkerAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/OpenBreakpointMarkerAction.java
index 85947e71d..21130cca6 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/OpenBreakpointMarkerAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/OpenBreakpointMarkerAction.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2010 IBM Corporation and others.
+ * Copyright (c) 2000, 2014 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -7,6 +7,7 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
+ * Lars Vogel <Lars.Vogel@gmail.com> - Bug 426110
*******************************************************************************/
package org.eclipse.debug.internal.ui.actions.breakpoints;
@@ -33,12 +34,12 @@ public class OpenBreakpointMarkerAction extends SelectionProviderAction {
protected static DelegatingModelPresentation fgPresentation = new DelegatingModelPresentation();
private IBreakpoint breakpoint;
private IEditorInput input;
-
+
public OpenBreakpointMarkerAction(ISelectionProvider selectionProvider) {
super(selectionProvider, ActionMessages.OpenBreakpointMarkerAction__Go_to_File_1);
setToolTipText(ActionMessages.OpenBreakpointMarkerAction_Go_to_File_for_Breakpoint_2);
- setImageDescriptor(AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.ui.ide", "icons/full/elcl16/gotoobj_tsk.gif")); //$NON-NLS-1$ //$NON-NLS-2$
- setDisabledImageDescriptor(AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.ui.ide", "icons/full/dlcl16/gotoobj_tsk.gif")); //$NON-NLS-1$ //$NON-NLS-2$
+ setImageDescriptor(AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.ui.ide", "icons/full/elcl16/gotoobj_tsk.png")); //$NON-NLS-1$ //$NON-NLS-2$
+ setDisabledImageDescriptor(AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.ui.ide", "icons/full/dlcl16/gotoobj_tsk.png")); //$NON-NLS-1$ //$NON-NLS-2$
PlatformUI.getWorkbench().getHelpSystem().setHelp(
this,
IDebugHelpContextIds.OPEN_BREAKPOINT_ACTION);

Back to the top