diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-10-28 12:51:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-10-28 13:48:14 +0100 |
commit | 176ac1e61610579ba8ac202c16d7aa0c0991af89 (patch) | |
tree | 275db2a0ccfd6fb06505d82813040fc5e9aea9b1 /helpcompiler | |
parent | c99267b326afcfd4002dc5ee33f5076a466c0cab (diff) |
Remove unnecessary SyntaxHighlighter::Tokenizer statefulness
...which reveals that SyntaxHighlighter::notifyChange does nothing, so remove it.
Change-Id: I49834af29081ee703d9e62e182e3c1f8ce7e212e
Diffstat (limited to 'helpcompiler')
-rw-r--r-- | helpcompiler/source/BasCodeTagger.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/helpcompiler/source/BasCodeTagger.cxx b/helpcompiler/source/BasCodeTagger.cxx index a01c6b62d934..fcbe8e45cf01 100644 --- a/helpcompiler/source/BasCodeTagger.cxx +++ b/helpcompiler/source/BasCodeTagger.cxx @@ -149,7 +149,6 @@ void BasicCodeTagger::tagParagraph( xmlNodePtr paragraph ) OUString strLine( reinterpret_cast<const sal_Char*>(codeSnippet), strlen(reinterpret_cast<const char*>(codeSnippet)), RTL_TEXTENCODING_UTF8 ); - m_Highlighter.notifyChange ( &strLine, 1 ); std::vector<HighlightPortion> portions; m_Highlighter.getHighlightPortions( strLine, portions ); for (std::vector<HighlightPortion>::iterator i(portions.begin()); |