diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-10-22 16:48:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-10-22 18:19:18 +0200 |
commit | b7f20ef33f5a32cc4726db3ff22056850426073e (patch) | |
tree | d89bc78319f72e53dfa0f5c2de5652f18e36063c /svtools | |
parent | c9bca105cae2768fc8b80ed35fcbb6ed11391c9a (diff) |
Unwind HighlightPortions typedef
Change-Id: I0ecc15f9bfd557d0a70a05536906a4984a46463c
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/edit/editsyntaxhighlighter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/edit/editsyntaxhighlighter.cxx b/svtools/source/edit/editsyntaxhighlighter.cxx index d8bde9c7e14c..0d480d25a5ef 100644 --- a/svtools/source/edit/editsyntaxhighlighter.cxx +++ b/svtools/source/edit/editsyntaxhighlighter.cxx @@ -174,7 +174,7 @@ void MultiLineEditSyntaxHighlight::UpdateData() aHighlighter.notifyChange( nLine, 0, &aLine, 1 ); GetTextEngine()->RemoveAttribs( nLine, sal_True ); - HighlightPortions aPortions; + std::vector<HighlightPortion> aPortions; aHighlighter.getHighlightPortions( nLine, aLine, aPortions ); for ( size_t i = 0; i < aPortions.size(); i++ ) { |