diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-10-28 12:30:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-10-28 13:48:14 +0100 |
commit | c99267b326afcfd4002dc5ee33f5076a466c0cab (patch) | |
tree | 6b160f1ce1c505ede71424f069aca608438a2b6d /basctl | |
parent | 6aa24e7565dfa5feafd12cd0ec12312df044916e (diff) |
Fold SyntaxHighlighter::initialize into ctor
...which reveals that m_pKeyWords, m_nKeyWordCount members are unused.
Change-Id: I55020e892d463f2e40d5bcf71efba92778b317c1
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index 0a527604ca1a..1b3ad3f7be54 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -233,6 +233,7 @@ EditorWindow::EditorWindow (Window* pParent, ModulWindow* pModulWindow) : pEditEngine(0), rModulWindow(*pModulWindow), nCurTextWidth(0), + aHighlighter(HIGHLIGHT_BASIC), bHighlightning(false), bDoSyntaxHighlight(true), bDelayHighlight(true), @@ -962,8 +963,6 @@ void EditorWindow::CreateEditEngine() aSyntaxIdleTimer.SetTimeout( 200 ); aSyntaxIdleTimer.SetTimeoutHdl( LINK( this, EditorWindow, SyntaxTimerHdl ) ); - aHighlighter.initialize( HIGHLIGHT_BASIC ); - bool bWasDoSyntaxHighlight = bDoSyntaxHighlight; bDoSyntaxHighlight = false; // too slow for large texts... OUString aOUSource(rModulWindow.GetModule()); @@ -1311,7 +1310,6 @@ void EditorWindow::ParagraphInsertedDeleted( sal_uLong nPara, bool bInserted ) rModulWindow.GetBreakPoints().reset(); rModulWindow.GetBreakPointWindow().Invalidate(); rModulWindow.GetLineNumberWindow().Invalidate(); - aHighlighter.initialize( HIGHLIGHT_BASIC ); } else { |