From c61a0ca6182bcc4e246ac243af16541534da8a3d Mon Sep 17 00:00:00 2001 From: Markus Schorn Date: Thu, 26 Jul 2007 14:37:24 +0000 Subject: [PATCH] Fix for 197925, Restore Defaults for the Indexer Preferences works incorrectly. --- .../cdt/internal/ui/preferences/IndexerStrategyBlock.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/preferences/IndexerStrategyBlock.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/preferences/IndexerStrategyBlock.java index d7b198116d4..bbf977d21d5 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/preferences/IndexerStrategyBlock.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/preferences/IndexerStrategyBlock.java @@ -133,8 +133,8 @@ public class IndexerStrategyBlock extends AbstractCOptionPage { public void performDefaults() { initUpdatePolicy(IndexerPreferences.getDefaultUpdatePolicy()); - fAutoUpdateButton.setSelection(false); - fImmediateUpdateButton.setSelection(true); + fUseActiveBuildButton.setSelection(false); + fUseFixedBuildConfig.setSelection(true); updateEnablement(); } }