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/LexPerl.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/LexPerl.cxx')
-rw-r--r-- | src/LexPerl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LexPerl.cxx b/src/LexPerl.cxx index c52aa8c4f..8fef7225e 100644 --- a/src/LexPerl.cxx +++ b/src/LexPerl.cxx @@ -31,7 +31,7 @@ inline bool isPerlOperator(char ch) { return false; } -static int classifyWordPerl(unsigned int start, unsigned int end, WordList &keywords, BufferAccess &styler) { +static int classifyWordPerl(unsigned int start, unsigned int end, WordList &keywords, Accessor &styler) { char s[100]; bool wordIsNumber = isdigit(styler[start]) || (styler[start] == '.'); for (unsigned int i = 0; i < end - start + 1 && i < 30; i++) { @@ -54,7 +54,7 @@ static bool isEndVar(char ch) { ch != '_' && ch != '\''; } -static bool isMatch(BufferAccess &styler, int lengthDoc, int pos, const char *val) { +static bool isMatch(Accessor &styler, int lengthDoc, int pos, const char *val) { if ((pos + static_cast<int>(strlen(val))) >= lengthDoc) { return false; } @@ -90,7 +90,7 @@ static char opposite(char ch) { } static void ColourisePerlDoc(unsigned int startPos, int length, int initStyle, - WordList *keywordlists[], BufferAccess &styler) { + WordList *keywordlists[], Accessor &styler) { // Lexer for perl often has to backtrack to start of current style to determine // which characters are being used as quotes, how deeply nested is the |