diff options
author | nyamatongwe <unknown> | 2002-02-12 03:36:01 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-02-12 03:36:01 +0000 |
commit | f0546a3f52cfb6b2d1bfc4ca9343960e40a29f44 (patch) | |
tree | 7382821157b6d4ce900844210ead235349264245 /win32/ExternalLexer.h | |
parent | 2c7158c928c73f02f4fc448fdd96ba4f45d0ea76 (diff) | |
download | scintilla-mirror-f0546a3f52cfb6b2d1bfc4ca9343960e40a29f44.tar.gz |
Made compatible with const correctness done for superclass.
Diffstat (limited to 'win32/ExternalLexer.h')
-rw-r--r-- | win32/ExternalLexer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/ExternalLexer.h b/win32/ExternalLexer.h index 62d786991..188ded7a5 100644 --- a/win32/ExternalLexer.h +++ b/win32/ExternalLexer.h @@ -31,9 +31,9 @@ public: languageName = name; }; virtual void Lex(unsigned int startPos, int lengthDoc, int initStyle, - WordList *keywordlists[], Accessor &styler); + WordList *keywordlists[], Accessor &styler) const; virtual void Fold(unsigned int startPos, int lengthDoc, int initStyle, - WordList *keywordlists[], Accessor &styler); + WordList *keywordlists[], Accessor &styler) const; virtual void SetExternal(ExtLexerFunction fLexer, ExtFoldFunction fFolder, int index); }; |