mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-17 14:05:23 +02:00
Bug 413080 - IllegalArgumentException in Indexer preference page
This commit is contained in:
parent
d8157b008a
commit
003cb67913
1 changed files with 4 additions and 1 deletions
|
@ -210,7 +210,10 @@ public class IndexerBlock extends AbstractCOptionPage {
|
||||||
if (fIndexerConfigMap.size() > 2) {
|
if (fIndexerConfigMap.size() > 2) {
|
||||||
fIndexersComboBox = ControlFactory.createSelectCombo(group, "", ""); //$NON-NLS-1$ //$NON-NLS-2$
|
fIndexersComboBox = ControlFactory.createSelectCombo(group, "", ""); //$NON-NLS-1$ //$NON-NLS-2$
|
||||||
fIndexersComboBox.addSelectionListener(indexerChangeListener);
|
fIndexersComboBox.addSelectionListener(indexerChangeListener);
|
||||||
fReindexOnIndexerChange = ControlFactory.createCheckBox(group, CUIPlugin.getResourceString("IndexerBlock.redindexOnIndexerChange")); //$NON-NLS-1$
|
|
||||||
|
if(getProject() != null) {
|
||||||
|
fReindexOnIndexerChange = ControlFactory.createCheckBox(group, CUIPlugin.getResourceString("IndexerBlock.redindexOnIndexerChange")); //$NON-NLS-1$
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// add composite for pages
|
// add composite for pages
|
||||||
|
|
Loading…
Add table
Reference in a new issue