]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/scintilla/include/KeyWords.h
Fix HTML help on Mac.
[wxWidgets.git] / src / stc / scintilla / include / KeyWords.h
index 1b42ecdd93e9a4c049e1e57e365e0497a6d92b5c..3159dcc1b43762085db9af17de6086d3c35d4be7 100644 (file)
@@ -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[], StylingContext &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[], StylingContext &styler);
+                  int language, WordList *keywordlists[], Accessor &styler);
 };
 
 inline bool iswordchar(char ch) {