Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2007-05-09 15:50:05 +0000
committerMichael Rennie2007-05-09 15:50:05 +0000
commit44e4a08afc044ea2a539652c95f499aca6014787 (patch)
tree70e31e51f724946fc2870de52ffc2a13a80ae787 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/SelectLaunchersDialog.java
parent7f20f126d552029fd898d5287fb65f3789690dd9 (diff)
downloadeclipse.platform.debug-44e4a08afc044ea2a539652c95f499aca6014787.tar.gz
eclipse.platform.debug-44e4a08afc044ea2a539652c95f499aca6014787.tar.xz
eclipse.platform.debug-44e4a08afc044ea2a539652c95f499aca6014787.zip
Bug 184865
[help] help topic for Select Configuration Type dialog
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/SelectLaunchersDialog.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/SelectLaunchersDialog.java12
1 files changed, 11 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/SelectLaunchersDialog.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/SelectLaunchersDialog.java
index be757f2ea..1b1a4f7e8 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/SelectLaunchersDialog.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/SelectLaunchersDialog.java
@@ -21,6 +21,7 @@ import org.eclipse.debug.internal.ui.IDebugHelpContextIds;
import org.eclipse.debug.internal.ui.IInternalDebugUIConstants;
import org.eclipse.debug.internal.ui.SWTFactory;
import org.eclipse.debug.ui.IDebugUIConstants;
+import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.IDialogSettings;
import org.eclipse.jface.viewers.IBaseLabelProvider;
import org.eclipse.jface.viewers.ILabelProvider;
@@ -48,7 +49,7 @@ import org.eclipse.swt.widgets.Text;
*
* @since 3.3
*/
-public class SelectLaunchersDialog extends AbstractDebugSelectionDialog {
+public class SelectLaunchersDialog extends AbstractDebugCheckboxSelectionDialog {
/**
* Builds labels for table control
@@ -140,6 +141,15 @@ public class SelectLaunchersDialog extends AbstractDebugSelectionDialog {
}
/* (non-Javadoc)
+ * @see org.eclipse.debug.internal.ui.launchConfigurations.AbstractDebugCheckboxSelectionDialog#createButtonsForButtonBar(org.eclipse.swt.widgets.Composite)
+ */
+ protected void createButtonsForButtonBar(Composite parent) {
+ super.createButtonsForButtonBar(parent);
+ // Even if a user does not change anything, they can still press ok
+ getButton(IDialogConstants.OK_ID).setEnabled(true);
+ }
+
+ /* (non-Javadoc)
* @see org.eclipse.debug.internal.ui.launchConfigurations.AbstractDebugSelectionDialog#addCustomHeaderControls(org.eclipse.swt.widgets.Composite)
*/
protected void addCustomHeaderControls(Composite parent) {

Back to the top