mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix source viewer scanner initialization
This commit is contained in:
parent
68f0ef88a8
commit
3eaab306ed
1 changed files with 1 additions and 1 deletions
|
@ -261,7 +261,7 @@ public class CSourceViewerConfiguration extends TextSourceViewerConfiguration {
|
|||
private void initializeScanners() {
|
||||
Assert.isTrue(isNewSetup());
|
||||
fCppCodeScanner= new CppCodeScanner(getColorManager(), fPreferenceStore);
|
||||
fCCodeScanner= new CppCodeScanner(getColorManager(), fPreferenceStore);
|
||||
fCCodeScanner= new CCodeScanner(getColorManager(), fPreferenceStore);
|
||||
fMultilineCommentScanner= new CCommentScanner(getColorManager(), fPreferenceStore, ICColorConstants.C_MULTI_LINE_COMMENT);
|
||||
fSinglelineCommentScanner= new CCommentScanner(getColorManager(), fPreferenceStore, ICColorConstants.C_SINGLE_LINE_COMMENT);
|
||||
fStringScanner= new SingleTokenCScanner(getColorManager(), fPreferenceStore, ICColorConstants.C_STRING);
|
||||
|
|
Loading…
Add table
Reference in a new issue