diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java index 8b836c42821..1f0484e4e18 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java @@ -150,6 +150,7 @@ public class TeamProjectIndexExportWizardPage extends WizardDataTransferPage im SelectionAdapter listener = new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { fProjectViewer.setAllChecked(true); + updateWidgetEnablements(); } }; selectButton.addSelectionListener(listener); @@ -160,6 +161,7 @@ public class TeamProjectIndexExportWizardPage extends WizardDataTransferPage im listener = new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { fProjectViewer.setAllChecked(false); + updateWidgetEnablements(); } }; deselectButton.addSelectionListener(listener); diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/messages.properties b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/messages.properties index da440476907..35da0096b0b 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/messages.properties +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/messages.properties @@ -11,11 +11,11 @@ TeamProjectIndexExportWizard_title=Export TeamProjectIndexExportWizardPage_title=Export Team Shared Index TeamProjectIndexExportWizardPage_description=Export C/C++ index for use in other workspaces. -TeamProjectIndexExportWizardPage_labelProjectTable=Select the projects to export the index for: +TeamProjectIndexExportWizardPage_labelProjectTable=Select &project indexes to export: TeamProjectIndexExportWizardPage_selectAll=&Select All TeamProjectIndexExportWizardPage_deselectAll=&Deselect All -TeamProjectIndexExportWizardPage_destinationLabel=Export destination: -TeamProjectIndexExportWizardPage_variableButton=Insert Variable... +TeamProjectIndexExportWizardPage_destinationLabel=&Export destination: +TeamProjectIndexExportWizardPage_variableButton=Insert &Variable... TeamProjectIndexExportWizardPage_errorExporting=Errors occurred while exporting index TeamProjectIndexExportWizardPage_destinationMessage=Enter a destination archive file. TeamProjectIndexExportWizardPage_noProjectError=At least one project must be selected.