1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 08:45:44 +02:00

Bug #181023: C/C++ property pages grouped.

This commit is contained in:
Oleg Krasilnikov 2007-04-09 05:56:49 +00:00
parent 6e8d740215
commit 70f848ae68

View file

@ -0,0 +1,12 @@
package org.eclipse.cdt.ui.newui;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.ui.dialogs.PropertyPage;
public class Page_head_general extends PropertyPage {
protected Control createContents(Composite parent) {
noDefaultAndApplyButton();
return parent;
}
}