Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/ChangeLog3
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/ManageConfigDialog.java22
2 files changed, 9 insertions, 16 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/ChangeLog b/build/org.eclipse.cdt.managedbuilder.ui/ChangeLog
index f4f30680906..c284f82255d 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui/ChangeLog
+++ b/build/org.eclipse.cdt.managedbuilder.ui/ChangeLog
@@ -1,3 +1,6 @@
+2004-06-15 Tanya Wolff
+ Removed intermediate composites to allow groupings to be readable by screenreader in the Manage Configuration dialog.
+
2004-03-16 Tanya Wolff
Marked remaining strings forming keys, directories and filenames untranslatable.
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/ManageConfigDialog.java b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/ManageConfigDialog.java
index b89e10ad48c..f2ab6057607 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/ManageConfigDialog.java
+++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/ManageConfigDialog.java
@@ -240,14 +240,9 @@ public class ManageConfigDialog extends Dialog {
deletedConfigLabel.setText(ManagedBuilderUIMessages.getResourceString(DELETED_CONFIGS));
deletedConfigLabel.setLayoutData(new GridData());
- // Create the current config list
- final Composite currentComp = new Composite(configListGroup, SWT.NULL);
- currentComp.setFont(configListGroup.getFont());
- currentComp.setLayout(new GridLayout(1, true));
- currentComp.setLayoutData(new GridData(GridData.FILL_BOTH));
-
- currentConfigList = new List(currentComp, SWT.SINGLE|SWT.V_SCROLL|SWT.H_SCROLL|SWT.BORDER);
- currentConfigList.setFont(currentComp.getFont());
+ // Create the current config List
+ currentConfigList = new List(configListGroup, SWT.SINGLE|SWT.V_SCROLL|SWT.H_SCROLL|SWT.BORDER);
+ currentConfigList.setFont(configListGroup.getFont());
data = new GridData(GridData.FILL_BOTH);
data.widthHint = (IDialogConstants.ENTRY_FIELD_WIDTH / 2);
currentConfigList.setLayoutData(data);
@@ -308,14 +303,9 @@ public class ManageConfigDialog extends Dialog {
}
});
- // Create the deleted config list
- final Composite deletedComp = new Composite(configListGroup, SWT.NULL);
- deletedComp.setFont(configListGroup.getFont());
- deletedComp.setLayout(new GridLayout(1, true));
- deletedComp.setLayoutData(new GridData(GridData.FILL_BOTH));
-
- deletedConfigList = new List(deletedComp, SWT.SINGLE|SWT.V_SCROLL|SWT.H_SCROLL|SWT.BORDER);
- deletedConfigList.setFont(deletedComp.getFont());
+ //Create the deleted config list
+ deletedConfigList = new List(configListGroup, SWT.SINGLE|SWT.V_SCROLL|SWT.H_SCROLL|SWT.BORDER);
+ deletedConfigList.setFont(configListGroup.getFont());
data = new GridData(GridData.FILL_BOTH);
data.widthHint = (IDialogConstants.ENTRY_FIELD_WIDTH / 2);
deletedConfigList.setLayoutData(data);

Back to the top