Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2008-07-07 15:48:27 +0000
committerMichael Rennie2008-07-07 15:48:27 +0000
commite7590e956bfe89179f89a635c4b9ae2629bb088d (patch)
tree4da2ac318240566c081ccddbcbb92e9d2e11f49e /org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
parentda5f0974194bc9c932e3d261e74fa735f68a7c00 (diff)
downloadeclipse.platform.debug-e7590e956bfe89179f89a635c4b9ae2629bb088d.tar.gz
eclipse.platform.debug-e7590e956bfe89179f89a635c4b9ae2629bb088d.tar.xz
eclipse.platform.debug-e7590e956bfe89179f89a635c4b9ae2629bb088d.zip
Bug 239794 CommonTab source uses wrong launch group
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
index 53d888d05..b3a6cc8cb 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
@@ -678,7 +678,7 @@ public class CommonTab extends AbstractLaunchConfigurationTab {
}
if (run) {
num++;
- groups.add(getLaunchConfigurationManager().getLaunchGroup(IDebugUIConstants.ID_DEBUG_LAUNCH_GROUP));
+ groups.add(getLaunchConfigurationManager().getLaunchGroup(IDebugUIConstants.ID_RUN_LAUNCH_GROUP));
}
// see if there are any changes
if (num == checked.length) {

Back to the top