mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-09 01:05:38 +02:00
Fix for bug 47704 - managed make & binary parser problem
This commit is contained in:
parent
87e950ec5a
commit
ebd877b1da
2 changed files with 9 additions and 1 deletions
|
@ -22,6 +22,7 @@ public interface ManagedBuilderHelpContextIds {
|
|||
public static final String MAN_PROJ_WIZ_PROJECTS_TAB = PREFIX + "new_proj_wiz_m_proj"; //$NON-NLS-1$
|
||||
public static final String MAN_PROJ_WIZ_ERRORPARSERS_TAB = PREFIX + "new_proj_wiz_m_errorp"; //$NON-NLS-1$
|
||||
public static final String MAN_PROJ_WIZ_INDEXER_TAB = PREFIX + "new_proj_wiz_m_cindexer"; //$NON-NLS-1$
|
||||
public static final String MAN_PROJ_WIZ_BINARYPARSER_TAB = PREFIX + "new_proj_wiz_s_binary"; //$NON-NLS-1$
|
||||
|
||||
public static final String MAN_PROJ_BUILD_PROP = PREFIX + "man_prop_build"; //$NON-NLS-1$
|
||||
public static final String MAN_PROJ_ERROR_PARSER = PREFIX + "man_prop_error"; //$NON-NLS-1$
|
||||
|
|
|
@ -11,6 +11,7 @@ package org.eclipse.cdt.managedbuilder.internal.ui;
|
|||
* IBM Rational Software - Initial API and implementation
|
||||
* **********************************************************************/
|
||||
|
||||
import org.eclipse.cdt.ui.dialogs.BinaryParserBlock;
|
||||
import org.eclipse.cdt.ui.dialogs.ICOptionContainer;
|
||||
import org.eclipse.cdt.ui.dialogs.TabFolderOptionBlock;
|
||||
import org.eclipse.swt.widgets.Composite;
|
||||
|
@ -19,7 +20,8 @@ import org.eclipse.ui.help.WorkbenchHelp;
|
|||
|
||||
public class ManagedProjectOptionBlock extends TabFolderOptionBlock {
|
||||
|
||||
ErrorParserBlock errParserBlock;
|
||||
private ErrorParserBlock errParserBlock;
|
||||
private BinaryParserBlock binaryParserBlock;
|
||||
|
||||
/**
|
||||
* @param parent
|
||||
|
@ -34,8 +36,13 @@ public class ManagedProjectOptionBlock extends TabFolderOptionBlock {
|
|||
protected void addTabs() {
|
||||
errParserBlock = new ErrorParserBlock();
|
||||
addTab(errParserBlock);
|
||||
addTab(binaryParserBlock = new BinaryParserBlock());
|
||||
}
|
||||
|
||||
public BinaryParserBlock getBinaryParserBlock() {
|
||||
return binaryParserBlock;
|
||||
}
|
||||
|
||||
public ErrorParserBlock getErrorParserBlock() {
|
||||
return errParserBlock;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue