diff options
author | nyamatongwe <unknown> | 2000-04-04 13:35:59 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-04-04 13:35:59 +0000 |
commit | 416476290c88d15ac7297989f77fac50f5c9fcef (patch) | |
tree | 3dced34d6c9f802d7e075554cea761616ce69c8b /src/KeyWords.cxx | |
parent | 42799425f8c02442df8b1af1a024a3fe8fa6e93f (diff) | |
download | scintilla-mirror-416476290c88d15ac7297989f77fac50f5c9fcef.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) { |