1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +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 89209d3c66
commit 3d8652704e

View file

@ -3224,7 +3224,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));
}