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

Bug 352679 - Change visibility of isSemanticHighlightingEnabled() from

private to protected

Change-Id: Icc8fc402551449aabe5badbc15755fd541bf655c
This commit is contained in:
Vivian Kong 2011-07-20 17:23:20 -04:00
parent 0f2bc1bb5c
commit 24988efc38

View file

@ -3226,7 +3226,7 @@ public class CEditor extends TextEditor implements ISelectionChangedListener, IC
*
* @since 4.0
*/
private boolean isSemanticHighlightingEnabled() {
protected boolean isSemanticHighlightingEnabled() {
return SemanticHighlightings.isEnabled(getPreferenceStore()) && !(isEnableScalablilityMode() && getPreferenceStore().getBoolean(PreferenceConstants.SCALABILITY_SEMANTIC_HIGHLIGHT));
}