diff options
author | nyamatongwe <devnull@localhost> | 2000-04-04 13:35:59 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-04-04 13:35:59 +0000 |
commit | cc54b6b2ba9362b9b148b9b256e0a37974c47a53 (patch) | |
tree | 3dced34d6c9f802d7e075554cea761616ce69c8b /src/KeyWords.cxx | |
parent | 3032c371bd9231f097226869e80bf56543ae2cab (diff) | |
download | scintilla-mirror-cc54b6b2ba9362b9b148b9b256e0a37974c47a53.tar.gz |
Avoid lots of warnings from Borland C++.
Changed name of interface class defined in Accessor.h to Accessor.
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 7cc69bd28..113ba222d 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[], BufferAccess &styler) { + int language, WordList *keywordlists[], Accessor &styler) { LexerModule *lm = base; while (lm) { if (lm->language == language) { |