mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-10 09:45:39 +02:00
Fix for PR 71106
This commit is contained in:
parent
b5edc37774
commit
b368cb948d
1 changed files with 5 additions and 1 deletions
|
@ -24,7 +24,11 @@ public class NewMakeCProjectWizard extends NewMakeProjectWizard {
|
|||
private static final String WZ_SETTINGS_DESC = "MakeCWizardSettings.description"; //$NON-NLS-1$'
|
||||
|
||||
public NewMakeCProjectWizard() {
|
||||
super(MakeUIPlugin.getResourceString(WZ_TITLE), MakeUIPlugin.getResourceString(WZ_DESC));
|
||||
this(MakeUIPlugin.getResourceString(WZ_TITLE), MakeUIPlugin.getResourceString(WZ_DESC));
|
||||
}
|
||||
|
||||
public NewMakeCProjectWizard(String title, String desc) {
|
||||
super(title, desc);
|
||||
}
|
||||
|
||||
public void addPages() {
|
||||
|
|
Loading…
Add table
Reference in a new issue