aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/KeyWords.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-04-04 09:17:32 +0000
committernyamatongwe <unknown>2000-04-04 09:17:32 +0000
commit42799425f8c02442df8b1af1a024a3fe8fa6e93f (patch)
tree5438281b06996314dfc3c8250769b1604b413728 /include/KeyWords.h
parent9babe727ae58180f27c35a35ffffc379f44d99ff (diff)
downloadscintilla-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 'include/KeyWords.h')
-rw-r--r--include/KeyWords.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/KeyWords.h b/include/KeyWords.h
index 1b42ecdd9..65c54379b 100644
--- a/include/KeyWords.h
+++ b/include/KeyWords.h
@@ -4,7 +4,7 @@
// The License.txt file describes the conditions under which this software may be distributed.
typedef void (*LexerFunction)(unsigned int startPos, int lengthDoc, int initStyle,
- WordList *keywordlists[], StylingContext &styler);
+ WordList *keywordlists[], BufferAccess &styler);
class LexerModule {
static LexerModule *base;
@@ -14,7 +14,7 @@ class LexerModule {
public:
LexerModule(int language_, LexerFunction fn_);
static void Colourise(unsigned int startPos, int lengthDoc, int initStyle,
- int language, WordList *keywordlists[], StylingContext &styler);
+ int language, WordList *keywordlists[], BufferAccess &styler);
};
inline bool iswordchar(char ch) {