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:
parent
725c78475c
commit
8b7bd775ee
1 changed files with 25 additions and 0 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue