From b7f20ef33f5a32cc4726db3ff22056850426073e Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 22 Oct 2013 16:48:15 +0200 Subject: Unwind HighlightPortions typedef Change-Id: I0ecc15f9bfd557d0a70a05536906a4984a46463c --- comphelper/source/misc/syntaxhighlight.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'comphelper') diff --git a/comphelper/source/misc/syntaxhighlight.cxx b/comphelper/source/misc/syntaxhighlight.cxx index 82fc060894cc..63a4b1bf077e 100644 --- a/comphelper/source/misc/syntaxhighlight.cxx +++ b/comphelper/source/misc/syntaxhighlight.cxx @@ -659,7 +659,7 @@ sal_uInt16 SimpleTokenizer_Impl::parseLine( sal_uInt32 nParseLine, const OUStrin } void SimpleTokenizer_Impl::getHighlightPortions( sal_uInt32 nParseLine, const OUString& rLine, - /*out*/HighlightPortions& portions ) + /*out*/std::vector& portions ) { // Set the position to the beginning of the source string mpStringBegin = mpActualPos = rLine.getStr(); @@ -731,7 +731,7 @@ void SyntaxHighlighter::notifyChange( sal_uInt32 nLine, sal_Int32 nLineCountDiff } void SyntaxHighlighter::getHighlightPortions( sal_uInt32 nLine, const OUString& rLine, - /*out*/HighlightPortions& portions ) + /*out*/std::vector& portions ) { m_pSimpleTokenizer->getHighlightPortions( nLine, rLine, portions ); } -- cgit