Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.debug.ui/schema/breakpointOrganizers.exsd2
-rw-r--r--org.eclipse.debug.ui/schema/launchConfigurationTypeImages.exsd2
-rw-r--r--org.eclipse.debug.ui/schema/launchGroups.exsd4
-rw-r--r--org.eclipse.debug.ui/schema/launchShortcuts.exsd2
-rw-r--r--org.eclipse.debug.ui/schema/sourceContainerPresentations.exsd2
5 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.debug.ui/schema/breakpointOrganizers.exsd b/org.eclipse.debug.ui/schema/breakpointOrganizers.exsd
index f80327759..118ea1226 100644
--- a/org.eclipse.debug.ui/schema/breakpointOrganizers.exsd
+++ b/org.eclipse.debug.ui/schema/breakpointOrganizers.exsd
@@ -112,7 +112,7 @@ Organizers with the specified name will be automatically created by the Debug Pl
class="com.example.BreakpointOrganizer"
id="com.example.BreakpointOrganizer"
label="Example Organizer"
- icon="icons/full/obj16/example_org.gif"/>
+ icon="icons/full/obj16/example_org.png"/>
</extension>
</pre>
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.
diff --git a/org.eclipse.debug.ui/schema/launchConfigurationTypeImages.exsd b/org.eclipse.debug.ui/schema/launchConfigurationTypeImages.exsd
index 95e9fa4bf..8257be2a7 100644
--- a/org.eclipse.debug.ui/schema/launchConfigurationTypeImages.exsd
+++ b/org.eclipse.debug.ui/schema/launchConfigurationTypeImages.exsd
@@ -71,7 +71,7 @@
<launchConfigurationTypeImage
id="com.example.FirstLaunchConfigurationTypeImage"
configTypeID="com.example.FirstLaunchConfigurationType"
- icon="icons/FirstLaunchConfigurationType.gif">
+ icon="icons/FirstLaunchConfigurationType.png">
</launchConfigurationTypeImage>
</extension>
</pre>
diff --git a/org.eclipse.debug.ui/schema/launchGroups.exsd b/org.eclipse.debug.ui/schema/launchGroups.exsd
index de979637b..322d1cbf8 100644
--- a/org.eclipse.debug.ui/schema/launchGroups.exsd
+++ b/org.eclipse.debug.ui/schema/launchGroups.exsd
@@ -140,8 +140,8 @@
id="com.example.ExampleLaunchGroupId"
mode="run"
label="Run"
- image="icons\run.gif"
- bannerImage="icons\runBanner.gif">
+ image="icons\run.png"
+ bannerImage="icons\runBanner.png">
</launchGroup>
</extension>
</pre>
diff --git a/org.eclipse.debug.ui/schema/launchShortcuts.exsd b/org.eclipse.debug.ui/schema/launchShortcuts.exsd
index d2e1f99ab..164054931 100644
--- a/org.eclipse.debug.ui/schema/launchShortcuts.exsd
+++ b/org.eclipse.debug.ui/schema/launchShortcuts.exsd
@@ -271,7 +271,7 @@ New in 3.4, clients can implement <code>org.eclipse.debug.ui.ILaunchShortc
<extension point="org.eclipse.debug.ui.launchShortcuts">
<shortcut
label="Java Application"
- icon="$nl$/icons/full/etool16/java_app.gif"
+ icon="$nl$/icons/full/etool16/java_app.png"
helpContextId="org.eclipse.jdt.debug.ui.shortcut_local_java_application"
modes="run, debug"
class="org.eclipse.jdt.internal.debug.ui.launcher.JavaApplicationLaunchShortcut"
diff --git a/org.eclipse.debug.ui/schema/sourceContainerPresentations.exsd b/org.eclipse.debug.ui/schema/sourceContainerPresentations.exsd
index e350ba0f7..ade6111d3 100644
--- a/org.eclipse.debug.ui/schema/sourceContainerPresentations.exsd
+++ b/org.eclipse.debug.ui/schema/sourceContainerPresentations.exsd
@@ -103,7 +103,7 @@
<sourceContainerPresentation
browserClass="org.eclipse.debug.internal.ui.sourcelookup.browsers.ProjectSourceContainerBrowser"
containerTypeID="org.eclipse.debug.core.containerType.project"
- icon="icons/full/obj16/prj_obj.gif"
+ icon="icons/full/obj16/prj_obj.png"
id="org.eclipse.debug.ui.containerPresentation.project">
</sourceContainerPresentation>
</extension>

Back to the top