diff options
| author | nyamatongwe <devnull@localhost> | 2010-07-13 21:31:10 +1000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2010-07-13 21:31:10 +1000 | 
| commit | c6f21af4f42c480d20729ce0d285cee6e94ffcbb (patch) | |
| tree | 728b10068a0dda0a55e156bee2113d0752718c79 /lexlib/StyleContext.cxx | |
| parent | 253d170b5b6d2625b6f7edb0aa1a57907909add2 (diff) | |
| download | scintilla-mirror-c6f21af4f42c480d20729ce0d285cee6e94ffcbb.tar.gz | |
Changed files for new lexer design.
Diffstat (limited to 'lexlib/StyleContext.cxx')
| -rw-r--r-- | lexlib/StyleContext.cxx | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/lexlib/StyleContext.cxx b/lexlib/StyleContext.cxx index 4a1f71622..cf59fdd24 100644 --- a/lexlib/StyleContext.cxx +++ b/lexlib/StyleContext.cxx @@ -9,10 +9,11 @@  #include <string.h>  #include <ctype.h>  #include <stdio.h> +#include <assert.h> -#include "Platform.h" +#include "ILexer.h" -#include "PropSet.h" +#include "LexAccessor.h"  #include "Accessor.h"  #include "StyleContext.h" @@ -22,7 +23,7 @@ using namespace Scintilla;  static void getRange(unsigned int start,  		unsigned int end, -		Accessor &styler, +		LexAccessor &styler,  		char *s,  		unsigned int len) {  	unsigned int i = 0; @@ -39,7 +40,7 @@ void StyleContext::GetCurrent(char *s, unsigned int len) {  static void getRangeLowered(unsigned int start,  		unsigned int end, -		Accessor &styler, +		LexAccessor &styler,  		char *s,  		unsigned int len) {  	unsigned int i = 0;  | 
