diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/syntaxhighlight.hxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/comphelper/syntaxhighlight.hxx b/include/comphelper/syntaxhighlight.hxx index 8a5782273af3..ec0bf7c01e41 100644 --- a/include/comphelper/syntaxhighlight.hxx +++ b/include/comphelper/syntaxhighlight.hxx @@ -66,11 +66,6 @@ enum HighlighterLanguage HIGHLIGHT_SQL }; -//*** SyntaxHighlighter Class *** -// Concept: the Highlighter will be notified of all changes in the source -// (notifyChange) and returns the caller the range of lines, which based on the -// changes, need to be highlighted again. For this the Highlighter marks all -// lines internally whether or not C comments begin or end. class COMPHELPER_DLLPUBLIC SyntaxHighlighter: private boost::noncopyable { class Tokenizer; @@ -82,8 +77,6 @@ public: SyntaxHighlighter(HighlighterLanguage language); ~SyntaxHighlighter(); - void notifyChange(const OUString* pChangedLines, sal_uInt32 nArrayLength); - void getHighlightPortions( const OUString& rLine, std::vector<HighlightPortion>& pPortions ); |