1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

new c option block when we move builder out of cdt

This commit is contained in:
David Inglis 2003-09-04 17:39:43 +00:00
parent 725c78475c
commit 8b7bd775ee

View file

@ -0,0 +1,25 @@
/*
* Created on 7-Aug-2003
*
* Copyright (c) 2002,2003 QNX Software Systems Ltd.
*
* Contributors:
* QNX Software Systems - Initial API and implementation
***********************************************************************/
package org.eclipse.cdt.internal.ui.preferences;
import org.eclipse.cdt.ui.dialogs.ICOptionContainer;
import org.eclipse.cdt.ui.dialogs.IndexerBlock;
import org.eclipse.cdt.ui.dialogs.TabFolderOptionBlock;
public class CProjectOptionBlock extends TabFolderOptionBlock {
public CProjectOptionBlock(ICOptionContainer parent) {
super(parent);
}
protected void addTabs() {
addTab(new IndexerBlock());
}
}