1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 17:35:35 +02:00

Fix for 156749 - Syntax highlighter preferences initialized incorrectly

This commit is contained in:
Anton Leherbauer 2006-09-11 06:52:48 +00:00
parent 302b3a69aa
commit 76c6346936

View file

@ -180,13 +180,13 @@ public class CEditorPreferencePage extends AbstractPreferencePage implements IWo
store.setDefault(ICColorConstants.C_DEFAULT + "_bold", false); //$NON-NLS-1$
PreferenceConverter.setDefault(store, ICColorConstants.C_OPERATOR, new RGB(0, 0, 0));
store.setDefault(ICColorConstants.C_DEFAULT + "_bold", false); //$NON-NLS-1$
store.setDefault(ICColorConstants.C_OPERATOR + "_bold", false); //$NON-NLS-1$
PreferenceConverter.setDefault(store, ICColorConstants.C_BRACES, new RGB(0, 0, 0));
store.setDefault(ICColorConstants.C_DEFAULT + "_bold", false); //$NON-NLS-1$
store.setDefault(ICColorConstants.C_BRACES + "_bold", false); //$NON-NLS-1$
PreferenceConverter.setDefault(store, ICColorConstants.C_NUMBER, new RGB(0, 0, 0));
store.setDefault(ICColorConstants.C_DEFAULT + "_bold", false); //$NON-NLS-1$
store.setDefault(ICColorConstants.C_NUMBER + "_bold", false); //$NON-NLS-1$
}