mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 08:55:25 +02:00
Fixed a label
This commit is contained in:
parent
c972f4c2f9
commit
84ec3f33f6
1 changed files with 2 additions and 2 deletions
|
@ -138,7 +138,7 @@ public abstract class ConvertProjectWizardPage
|
|||
protected void addToMainPage(Composite container){
|
||||
|
||||
// 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() {
|
||||
|
@ -154,7 +154,7 @@ public abstract class ConvertProjectWizardPage
|
|||
cListener);
|
||||
cRadioButton.setSelection(convertToC);
|
||||
ccRadioButton = ControlFactory.createRadioButton(area,
|
||||
"C/C++ Project",
|
||||
"C++ Project",
|
||||
"C++",
|
||||
cListener);
|
||||
ccRadioButton.setSelection(convertToCC);
|
||||
|
|
Loading…
Add table
Reference in a new issue