1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix PR 56895

This commit is contained in:
Alain Magloire 2004-03-31 15:31:53 +00:00
parent 5c3d8fdb41
commit e635fb93e7
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-03-31 David Daoust
Changed the default value for the preference "LinkToEditor" to be
off -- the same as in the JDT.
* src/org/eclipse/cdt/internal/ui/preferences/CPluginPreferencePage.java
2004-03-31 Bogdan Gheorghe 2004-03-31 Bogdan Gheorghe
Fixed the overview annotations in the Overview bar in the CEditor Fixed the overview annotations in the Overview bar in the CEditor
Modified the CEditorPreferencePage to add the Index Marker annotation Modified the CEditorPreferencePage to add the Index Marker annotation

View file

@ -84,7 +84,7 @@ public class CPluginPreferencePage extends FieldEditorPreferencePage implements
* Initializes the default values of this page in the preference bundle. * Initializes the default values of this page in the preference bundle.
*/ */
public static void initDefaults(IPreferenceStore prefs) { public static void initDefaults(IPreferenceStore prefs) {
prefs.setDefault(PreferenceConstants.PREF_LINK_TO_EDITOR, true); prefs.setDefault(PreferenceConstants.PREF_LINK_TO_EDITOR, false);
prefs.setDefault(PreferenceConstants.PREF_SHOW_CU_CHILDREN, true); prefs.setDefault(PreferenceConstants.PREF_SHOW_CU_CHILDREN, true);
prefs.setDefault(PreferenceConstants.PREF_USE_STRUCTURAL_PARSE_MODE, CCorePlugin.getDefault().useStructuralParseMode()); prefs.setDefault(PreferenceConstants.PREF_USE_STRUCTURAL_PARSE_MODE, CCorePlugin.getDefault().useStructuralParseMode());
prefs.setDefault(PreferenceConstants.EDITOR_SHOW_SEGMENTS, false); prefs.setDefault(PreferenceConstants.EDITOR_SHOW_SEGMENTS, false);