mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-13 20:15:22 +02:00
fix for PR 71106
This commit is contained in:
parent
deb492ab11
commit
bb1370a0d1
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$'
|
private static final String WZ_SETTINGS_DESC = "MakeCWizardSettings.description"; //$NON-NLS-1$'
|
||||||
|
|
||||||
public NewMakeCProjectWizard() {
|
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() {
|
public void addPages() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue