1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Fixed a label

This commit is contained in:
Judy N. Green 2002-11-25 19:43:13 +00:00
parent c972f4c2f9
commit 84ec3f33f6

View file

@ -138,7 +138,7 @@ public abstract class ConvertProjectWizardPage
protected void addToMainPage(Composite container){ protected void addToMainPage(Composite container){
// Add convert to C or C/C++ buttons // Add convert to C or C/C++ buttons
Composite area = ControlFactory.createGroup(container, "Convert to C or C/C++", 2); Composite area = ControlFactory.createGroup(container, "Convert to C or C++", 2);
SelectionListener cListener = new SelectionAdapter() { SelectionListener cListener = new SelectionAdapter() {
@ -154,7 +154,7 @@ public abstract class ConvertProjectWizardPage
cListener); cListener);
cRadioButton.setSelection(convertToC); cRadioButton.setSelection(convertToC);
ccRadioButton = ControlFactory.createRadioButton(area, ccRadioButton = ControlFactory.createRadioButton(area,
"C/C++ Project", "C++ Project",
"C++", "C++",
cListener); cListener);
ccRadioButton.setSelection(convertToCC); ccRadioButton.setSelection(convertToCC);