1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Fix for 181391, improvements to export index UI.

This commit is contained in:
Markus Schorn 2007-04-13 11:28:48 +00:00
parent 1dfa6ff276
commit 68c120a672
2 changed files with 5 additions and 3 deletions

View file

@ -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);

View file

@ -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.