diff options
author | nyamatongwe <unknown> | 2000-04-04 09:17:32 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-04-04 09:17:32 +0000 |
commit | 42799425f8c02442df8b1af1a024a3fe8fa6e93f (patch) | |
tree | 5438281b06996314dfc3c8250769b1604b413728 /src/KeyWords.cxx | |
parent | 9babe727ae58180f27c35a35ffffc379f44d99ff (diff) | |
download | scintilla-mirror-42799425f8c02442df8b1af1a024a3fe8fa6e93f.tar.gz |
Split a Document based Accessor (DocumentAccessor) off from
the old accessor which is now called WindowAccessor.
Accessor.h defines a common interface which is the type consumed
by the lexers.
Diffstat (limited to 'src/KeyWords.cxx')
-rw-r--r-- | src/KeyWords.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KeyWords.cxx b/src/KeyWords.cxx index 5d6d9c6cf..7cc69bd28 100644 --- a/src/KeyWords.cxx +++ b/src/KeyWords.cxx @@ -26,7 +26,7 @@ LexerModule::LexerModule(int language_, LexerFunction fn_) : } void LexerModule::Colourise(unsigned int startPos, int lengthDoc, int initStyle, - int language, WordList *keywordlists[], StylingContext &styler) { + int language, WordList *keywordlists[], BufferAccess &styler) { LexerModule *lm = base; while (lm) { if (lm->language == language) { |