diff options
Diffstat (limited to 'scintilla/lexers/LexKix.cxx')
-rw-r--r-- | scintilla/lexers/LexKix.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scintilla/lexers/LexKix.cxx b/scintilla/lexers/LexKix.cxx index 4f2ff11..fc88080 100644 --- a/scintilla/lexers/LexKix.cxx +++ b/scintilla/lexers/LexKix.cxx @@ -37,7 +37,7 @@ static inline bool IsOperator(const int ch) { return (ch == '+' || ch == '-' || ch == '*' || ch == '/' || ch == '&' || ch == '|' || ch == '<' || ch == '>' || ch == '=');
}
-static void ColouriseKixDoc(unsigned int startPos, int length, int initStyle,
+static void ColouriseKixDoc(Sci_PositionU startPos, Sci_Position length, int initStyle,
WordList *keywordlists[], Accessor &styler) {
WordList &keywords = *keywordlists[0];
|