mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-11 18:25:40 +02:00
fixed bug #53692
This commit is contained in:
parent
5d81e1cdf1
commit
41fe7cbae5
1 changed files with 6 additions and 2 deletions
|
@ -20,6 +20,7 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
import org.eclipse.core.runtime.Preferences;
|
import org.eclipse.core.runtime.Preferences;
|
||||||
import org.eclipse.jface.dialogs.ProgressMonitorDialog;
|
import org.eclipse.jface.dialogs.ProgressMonitorDialog;
|
||||||
import org.eclipse.jface.operation.IRunnableWithProgress;
|
import org.eclipse.jface.operation.IRunnableWithProgress;
|
||||||
|
import org.eclipse.jface.preference.IPreferencePageContainer;
|
||||||
import org.eclipse.swt.SWT;
|
import org.eclipse.swt.SWT;
|
||||||
import org.eclipse.swt.layout.FillLayout;
|
import org.eclipse.swt.layout.FillLayout;
|
||||||
import org.eclipse.swt.widgets.Composite;
|
import org.eclipse.swt.widgets.Composite;
|
||||||
|
@ -36,9 +37,12 @@ public class MakePropertyPage extends PropertyPage implements ICOptionContainer
|
||||||
|
|
||||||
public MakePropertyPage() {
|
public MakePropertyPage() {
|
||||||
super();
|
super();
|
||||||
fOptionBlock = new MakeProjectOptionBlock(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setContainer(IPreferencePageContainer preferencePageContainer) {
|
||||||
|
super.setContainer(preferencePageContainer);
|
||||||
|
fOptionBlock = new MakeProjectOptionBlock(this);
|
||||||
|
}
|
||||||
|
|
||||||
protected Control createContents(Composite parent) {
|
protected Control createContents(Composite parent) {
|
||||||
Composite composite = new Composite(parent, SWT.NONE);
|
Composite composite = new Composite(parent, SWT.NONE);
|
||||||
|
|
Loading…
Add table
Reference in a new issue