diff options
author | nyamatongwe <unknown> | 2001-06-01 06:25:30 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-06-01 06:25:30 +0000 |
commit | 579d7cae6b2e893ee675087666ad51c8fe5f9187 (patch) | |
tree | 397b57ca1df38bbaf736d56316e2fcb334ce77dd | |
parent | 13e919f6ad97c2db4f0da86b4a6e1b33b3a49e00 (diff) | |
download | scintilla-mirror-579d7cae6b2e893ee675087666ad51c8fe5f9187.tar.gz |
Changed name of ColouriseContext to allow debugging.
-rw-r--r-- | src/LexEiffel.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/LexEiffel.cxx b/src/LexEiffel.cxx index 85f0649a6..1296fb245 100644 --- a/src/LexEiffel.cxx +++ b/src/LexEiffel.cxx @@ -64,11 +64,11 @@ inline bool IsADigit(unsigned int ch) { // which just continues the current token or starts an identifier if in default. // DBCS treated specially as the second character can be < 0x80 and hence // syntactically significant. UTF-8 avoids this as all trail bytes are >= 0x80 -class ColouriseContext { +class xColouriseContext { Accessor &styler; int lengthDoc; int currentPos; - ColouriseContext& operator=(const ColouriseContext&) { + xColouriseContext& operator=(const xColouriseContext&) { return *this; } public: @@ -77,7 +77,7 @@ public: unsigned int ch; unsigned int chNext; - ColouriseContext(unsigned int startPos, int length, + xColouriseContext(unsigned int startPos, int length, int initStyle, Accessor &styler_) : styler(styler_), lengthDoc(startPos + length), @@ -139,7 +139,7 @@ static void ColouriseEiffelDoc(unsigned int startPos, WordList &keywords = *keywordlists[0]; - ColouriseContext lc(startPos, length, initStyle, styler); + xColouriseContext lc(startPos, length, initStyle, styler); for (; lc.More(); lc.Forward()) { |