Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjszursze2001-08-22 18:03:52 +0000
committerjszursze2001-08-22 18:03:52 +0000
commit44a83745260407a196f58697275b06ca6b7519eb (patch)
tree30cef7374e2fd7c6d045af7e3564c3af3a10b648
parent8aed0725fc02f0e667a34bf4fd4da319d36cbcb5 (diff)
downloadeclipse.platform.debug-44a83745260407a196f58697275b06ca6b7519eb.tar.gz
eclipse.platform.debug-44a83745260407a196f58697275b06ca6b7519eb.tar.xz
eclipse.platform.debug-44a83745260407a196f58697275b06ca6b7519eb.zip
1GI3UWM 1GIM0TV 1GITWE5v0_132_Jared_Pre_Breakpoint_Rework
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/LaunchWizardSelectionPage.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/LaunchWizardSelectionPage.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/LaunchWizardSelectionPage.java
index e5dd222d6..f145fbee1 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/LaunchWizardSelectionPage.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/LaunchWizardSelectionPage.java
@@ -123,6 +123,8 @@ public class LaunchWizardSelectionPage extends WizardSelectionPage {
public void createLaunchersGroup(Composite root) {
+ fSetAsDefaultLauncher= new Button(root, SWT.CHECK);
+
Label launchersLabel= new Label(root, SWT.NONE);
launchersLabel.setText(DebugUIUtils.getResourceString(LAUNCHER));
@@ -161,7 +163,6 @@ public class LaunchWizardSelectionPage extends WizardSelectionPage {
if (fLauncher != null) {
fLaunchersList.setSelection(new StructuredSelection(fLauncher));
}
- fSetAsDefaultLauncher= new Button(root, SWT.CHECK);
}
/**

Back to the top