From f5e8be8bb1681f0e2494337bc769b33332ef3fff Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 28 Oct 2013 11:38:36 +0100 Subject: Remove unused SimpleTokenizer_Impl::nLine/nCol ...which are never read; remove thereby unused parameters from functions. Change-Id: I644d2dc1b2d13ae2f932d04243521eef97e67e3e --- helpcompiler/source/BasCodeTagger.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'helpcompiler') diff --git a/helpcompiler/source/BasCodeTagger.cxx b/helpcompiler/source/BasCodeTagger.cxx index 6e698f504ce2..782bcdc3ec6a 100644 --- a/helpcompiler/source/BasCodeTagger.cxx +++ b/helpcompiler/source/BasCodeTagger.cxx @@ -149,9 +149,9 @@ void BasicCodeTagger::tagParagraph( xmlNodePtr paragraph ) OUString strLine( reinterpret_cast(codeSnippet), strlen(reinterpret_cast(codeSnippet)), RTL_TEXTENCODING_UTF8 ); - m_Highlighter.notifyChange ( 0, 0, &strLine, 1 ); + m_Highlighter.notifyChange ( &strLine, 1 ); std::vector portions; - m_Highlighter.getHighlightPortions( 0, strLine, portions ); + m_Highlighter.getHighlightPortions( strLine, portions ); for (std::vector::iterator i(portions.begin()); i != portions.end(); ++i) { -- cgit