Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2006-10-24 20:50:38 +0000
committerMichael Valenta2006-10-24 20:50:38 +0000
commit11e0b986c3dfa1f1b3266cdbf5c816e6ecdb6d67 (patch)
tree95c187ecee557995fe3621cbd1b32815b65c1ed5 /bundles/org.eclipse.compare/compare/org/eclipse/compare/CompareConfiguration.java
parent51383d89c61716dc8cae9b116e1d48f1544f8462 (diff)
downloadeclipse.platform.team-11e0b986c3dfa1f1b3266cdbf5c816e6ecdb6d67.tar.gz
eclipse.platform.team-11e0b986c3dfa1f1b3266cdbf5c816e6ecdb6d67.tar.xz
eclipse.platform.team-11e0b986c3dfa1f1b3266cdbf5c816e6ecdb6d67.zip
Bug 144638 [Viewers] Compare API is not extensible
Diffstat (limited to 'bundles/org.eclipse.compare/compare/org/eclipse/compare/CompareConfiguration.java')
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/CompareConfiguration.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/CompareConfiguration.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/CompareConfiguration.java
index f247e1d7a..26a3773b4 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/CompareConfiguration.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/CompareConfiguration.java
@@ -225,7 +225,7 @@ public class CompareConfiguration {
fPreferenceStore= prefStore;
if (fPreferenceStore != null) {
boolean b= fPreferenceStore.getBoolean(ComparePreferencePage.INITIALLY_SHOW_ANCESTOR_PANE);
- setProperty(ComparePreferencePage.INITIALLY_SHOW_ANCESTOR_PANE, new Boolean(b));
+ setProperty(ICompareUIConstants.PROP_ANCESTOR_VISIBLE, new Boolean(b));
b= fPreferenceStore.getBoolean(ComparePreferencePage.IGNORE_WHITESPACE);
setProperty(CompareConfiguration.IGNORE_WHITESPACE, new Boolean(b));

Back to the top