diff options
author | David Tardon <dtardon@redhat.com> | 2011-01-25 12:22:07 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-01-25 15:21:12 +0100 |
commit | 025ddb2c120bdc9475b353bafbed72f8bf725512 (patch) | |
tree | 291522bd548e94bdee4fad87813454169b53c1b4 /svtools | |
parent | 90b755b2838a49d80e83bd2642bc8ff5c399396b (diff) |
WaE: remove unused variable
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 96989a6ff30a..14a737a99e60 100644 --- a/svtools/source/edit/editsyntaxhighlighter.cxx +++ b/svtools/source/edit/editsyntaxhighlighter.cxx @@ -189,7 +189,7 @@ void MultiLineEditSyntaxHighlight::UpdateData() for (unsigned int nLine=0; nLine < GetTextEngine()->GetParagraphCount(); nLine++) { String aLine( GetTextEngine()->GetText( nLine ) ); - Range aChanges = aHighlighter.notifyChange( nLine, 0, &aLine, 1 ); + aHighlighter.notifyChange( nLine, 0, &aLine, 1 ); GetTextEngine()->RemoveAttribs( nLine, TRUE ); HighlightPortions aPortions; |