From 69ce10e343087c3ae6dfdda6ff47c31c8801b77e Mon Sep 17 00:00:00 2001 From: Anton Leherbauer Date: Fri, 13 Jun 2008 11:19:20 +0000 Subject: [PATCH] Fix for 237035: Syntax Coloring Preview and editors don't update --- .../cdt/internal/ui/text/CSourceViewerConfiguration.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CSourceViewerConfiguration.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CSourceViewerConfiguration.java index 259a59976fc..f2701f6bf50 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CSourceViewerConfiguration.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CSourceViewerConfiguration.java @@ -310,7 +310,7 @@ public class CSourceViewerConfiguration extends TextSourceViewerConfiguration { * * @return the C multi-line comment scanner */ - protected ICTokenScanner getMultilineCommentScanner() { + private ICTokenScanner getMultilineCommentScanner() { return fMultilineCommentScanner; } @@ -319,7 +319,7 @@ public class CSourceViewerConfiguration extends TextSourceViewerConfiguration { * * @return the C single-line comment scanner */ - protected ICTokenScanner getSinglelineCommentScanner() { + private ICTokenScanner getSinglelineCommentScanner() { return fSinglelineCommentScanner; }