Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2016-12-07 05:46:21 +0000
committerSarika Sinha2016-12-07 05:46:21 +0000
commit6efa88191899f8b37a9821e6798220cfabf6b484 (patch)
tree71997e766814c779d0e097d4f31dce58481f6ea6
parent5f987704a5a2128e13a6064cb9a179045c407e60 (diff)
downloadeclipse.platform.debug-6efa88191899f8b37a9821e6798220cfabf6b484.tar.gz
eclipse.platform.debug-6efa88191899f8b37a9821e6798220cfabf6b484.tar.xz
eclipse.platform.debug-6efa88191899f8b37a9821e6798220cfabf6b484.zip
Bug 508728 - Launch Group description missing in Run / Debug
Configurations dialogs Change-Id: I6b9eb9bfeee6385eb05ed65f4b94ff3edbc15491
-rw-r--r--org.eclipse.debug.ui/plugin.properties5
-rw-r--r--org.eclipse.debug.ui/plugin.xml3
2 files changed, 5 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/plugin.properties b/org.eclipse.debug.ui/plugin.properties
index aeffaf2ea..a6d2cbe10 100644
--- a/org.eclipse.debug.ui/plugin.properties
+++ b/org.eclipse.debug.ui/plugin.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2014 IBM Corporation and others.
+# Copyright (c) 2000, 2016 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
@@ -399,4 +399,5 @@ console.out.label= Standard out
console.in.label= Standard in
console.err.label= Standard error
debug.ui.component.label = Platform Debug UI
-debug.core.component.label = Platform Debug Core \ No newline at end of file
+debug.core.component.label = Platform Debug Core
+GroupLaunch.description=Launch several other configurations sequentially \ No newline at end of file
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index a6e400853..e36643927 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -3265,7 +3265,8 @@ M4 = Platform-specific fourth key
<launchConfigurationTabGroup
class="org.eclipse.debug.internal.ui.groups.GroupLaunchConfigurationTabGroup"
id="org.eclipse.debug.ui.groups.GroupLaunchConfigurationTabGroup"
- type="org.eclipse.debug.core.groups.GroupLaunchConfigurationType">
+ type="org.eclipse.debug.core.groups.GroupLaunchConfigurationType"
+ description="%GroupLaunch.description">
</launchConfigurationTabGroup>
</extension>
</plugin>

Back to the top