Skip to content

Commit 6912e6f

Browse files
committed
Replace PNG with SVG in documentation of org.eclipse.debug.io
1 parent cf161ce commit 6912e6f

File tree

9 files changed

+10
-12
lines changed

9 files changed

+10
-12
lines changed

debug/org.eclipse.debug.ui/schema/breakpointOrganizers.exsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Organizers with the specified name will be automatically created by the Debug Pl
112112
class="com.example.BreakpointOrganizer"
113113
id="com.example.BreakpointOrganizer"
114114
label="Example Organizer"
115-
icon="icons/full/obj16/example_org.png"/>
115+
icon="icons/full/obj16/example_org.svg"/>
116116
</extension>
117117
</pre>
118118
In the above example, the supplied factory will be included in the list of options for grouping breakpoints ("Group By > Example Organizer"). When selected, the associated organizer will be used to categorize breakpoints.

debug/org.eclipse.debug.ui/schema/launchConfigurationTypeImages.exsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<launchConfigurationTypeImage
7272
id="com.example.FirstLaunchConfigurationTypeImage"
7373
configTypeID="com.example.FirstLaunchConfigurationType"
74-
icon="icons/FirstLaunchConfigurationType.png">
74+
icon="icons/FirstLaunchConfigurationType.svg">
7575
</launchConfigurationTypeImage>
7676
</extension>
7777
</pre>

debug/org.eclipse.debug.ui/schema/launchGroups.exsd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@
140140
id="com.example.ExampleLaunchGroupId"
141141
mode="run"
142142
label="Run"
143-
image="icons\run.png"
144-
bannerImage="icons\runBanner.png">
143+
image="icons\run.svg"
144+
bannerImage="icons\runBanner.svg">
145145
</launchGroup>
146146
</extension>
147147
</pre>

debug/org.eclipse.debug.ui/schema/launchShortcuts.exsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ New in 3.4, clients can implement <code>org.eclipse.debug.ui.ILaunchShortc
271271
<extension point="org.eclipse.debug.ui.launchShortcuts">
272272
<shortcut
273273
label="Java Application"
274-
icon="$nl$/icons/full/etool16/java_app.png"
274+
icon="$nl$/icons/full/etool16/java_app.svg"
275275
helpContextId="org.eclipse.jdt.debug.ui.shortcut_local_java_application"
276276
modes="run, debug"
277277
class="org.eclipse.jdt.internal.debug.ui.launcher.JavaApplicationLaunchShortcut"

debug/org.eclipse.debug.ui/schema/sourceContainerPresentations.exsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
<sourceContainerPresentation
104104
browserClass="org.eclipse.debug.internal.ui.sourcelookup.browsers.ProjectSourceContainerBrowser"
105105
containerTypeID="org.eclipse.debug.core.containerType.project"
106-
icon="icons/full/obj16/prj_obj.png"
106+
icon="icons/full/obj16/prj_obj.svg"
107107
id="org.eclipse.debug.ui.containerPresentation.project">
108108
</sourceContainerPresentation>
109109
</extension>

debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/OpenBreakpointMarkerAction.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,8 @@ public class OpenBreakpointMarkerAction extends SelectionProviderAction {
4242
public OpenBreakpointMarkerAction(ISelectionProvider selectionProvider) {
4343
super(selectionProvider, ActionMessages.OpenBreakpointMarkerAction__Go_to_File_1);
4444
setToolTipText(ActionMessages.OpenBreakpointMarkerAction_Go_to_File_for_Breakpoint_2);
45-
ResourceLocator.imageDescriptorFromBundle("org.eclipse.ui.ide", "icons/full/elcl16/gotoobj_tsk.png") //$NON-NLS-1$ //$NON-NLS-2$
45+
ResourceLocator.imageDescriptorFromBundle("org.eclipse.ui.ide", "icons/full/elcl16/gotoobj_tsk.svg") //$NON-NLS-1$ //$NON-NLS-2$
4646
.ifPresent(this::setImageDescriptor);
47-
ResourceLocator.imageDescriptorFromBundle("org.eclipse.ui.ide", "icons/full/dlcl16/gotoobj_tsk.png") //$NON-NLS-1$ //$NON-NLS-2$
48-
.ifPresent(this::setDisabledImageDescriptor);
4947
PlatformUI.getWorkbench().getHelpSystem().setHelp(
5048
this,
5149
IDebugHelpContextIds.OPEN_BREAKPOINT_ACTION);

debug/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IBreakpointOrganizerDelegate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* class="com.example.BreakpointOrganizer"
3838
* id="com.example.BreakpointOrganizer"
3939
* label="Example Organizer"
40-
* icon="icons/full/obj16/example_org.png"/>
40+
* icon="icons/full/obj16/example_org.svg"/>
4141
* </extension>
4242
* </pre>
4343
*

debug/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchGroup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* id="com.example.ExampleLaunchGroupId"
3131
* mode="run"
3232
* label="Run"
33-
* image="icons\run.png"
33+
* image="icons\run.svg"
3434
* &lt;/launchGroup&gt;
3535
* &lt;/extension&gt;
3636
* </pre>

debug/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchShortcut.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* class="org.eclipse.jdt.internal.debug.ui.launcher.JavaApplicationLaunchShortcut"
4141
* description="%JavaLaunchShortcut.description"
4242
* helpContextId="org.eclipse.jdt.debug.ui.shortcut_local_java_application"
43-
* icon="$nl$/icons/full/etool16/java_app.png"
43+
* icon="$nl$/icons/full/etool16/java_app.svg"
4444
* id="org.eclipse.jdt.debug.ui.localJavaShortcut"
4545
* label="%JavaApplicationShortcut.label"
4646
* modes="run, debug"&gt;

0 commit comments

Comments
 (0)