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 /include/KeyWords.h | |
| 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 'include/KeyWords.h')
| -rw-r--r-- | include/KeyWords.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/KeyWords.h b/include/KeyWords.h index 65c54379b..3159dcc1b 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[], BufferAccess &styler); +                  WordList *keywordlists[], Accessor &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[], BufferAccess &styler); +                  int language, WordList *keywordlists[], Accessor &styler);  };  inline bool iswordchar(char ch) { | 
